X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_punt.py;h=cb9d40de4c492ccacd63bc2291d8094508659247;hb=ca3d38ae18c21ce37212f0d5d5f4a1702429e70c;hp=b190101fe8214f3725cd2b8f5e26810b9554029c;hpb=76b5649d074ab198cbf5737ac76d21649a61bffd;p=vpp.git diff --git a/test/test_punt.py b/test/test_punt.py index b190101fe82..cb9d40de4c4 100644 --- a/test/test_punt.py +++ b/test/test_punt.py @@ -760,8 +760,8 @@ class TestPunt(VppTestCase): self.assertEqual(stats, 130) stats = self.statistics.get_counter("/net/punt") - self.assertEqual(stats[0][2]['packets'], 65) - self.assertEqual(stats[0][3]['packets'], 65) + self.assertEqual(stats[0][7]['packets'], 65) + self.assertEqual(stats[0][8]['packets'], 65) # # use the test CLI to test a client that punts exception @@ -788,8 +788,8 @@ class TestPunt(VppTestCase): self.assertEqual(p6[IPv6].hlim, rx[IPv6].hlim) stats = self.statistics.get_counter("/net/punt") - self.assertEqual(stats[0][2]['packets'], 2*65) - self.assertEqual(stats[0][3]['packets'], 2*65) + self.assertEqual(stats[0][7]['packets'], 2*65) + self.assertEqual(stats[0][8]['packets'], 2*65) # # add another registration for the same reason to send packets @@ -835,8 +835,8 @@ class TestPunt(VppTestCase): self.assertEqual(p6[IPv6].hlim, rx[IPv6].hlim) stats = self.statistics.get_counter("/net/punt") - self.assertEqual(stats[0][2]['packets'], 3*65) - self.assertEqual(stats[0][3]['packets'], 3*65) + self.assertEqual(stats[0][7]['packets'], 3*65) + self.assertEqual(stats[0][8]['packets'], 3*65) self.logger.info(self.vapi.cli("show vlib graph punt-dispatch")) self.logger.info(self.vapi.cli("show punt client"))