X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_bihash.py;h=2949d66750dcd33f5984fdfcfbc81ee946a22f19;hb=2711ca710affe0c52bf63e08e0cf0588094e6198;hp=04b1b4f635adfe059e984458a6b287ae66690a45;hpb=ead1e536d66d83b546528c32e2112085a97c8e13;p=vpp.git diff --git a/test/test_bihash.py b/test/test_bihash.py index 04b1b4f635a..2949d66750d 100644 --- a/test/test_bihash.py +++ b/test/test_bihash.py @@ -2,7 +2,7 @@ import unittest -from framework import VppTestCase, VppTestRunner +from framework import VppTestCase, VppTestRunner, running_gcov_tests from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath @@ -11,6 +11,9 @@ class TestBihash(VppTestCase): @classmethod def setUpClass(cls): + # increase vapi timeout, to avoid spurious "test bihash ..." + # failures reported on aarch64 w/ test-debug + cls.vapi_response_timeout = 20 super(TestBihash, cls).setUpClass() @classmethod @@ -50,6 +53,7 @@ class TestBihash(VppTestCase): self.logger.critical(error) self.assertNotIn('failed', error) + @unittest.skipUnless(running_gcov_tests, "part of code coverage tests") def test_bihash_coverage(self): """ Improve Code Coverage """ @@ -60,6 +64,11 @@ class TestBihash(VppTestCase): self.logger.critical(error) self.assertNotIn('failed', error) + error = self.vapi.cli("test bihash nitems 10 nbuckets 1 ncycles 3" + + "search 2 careful 1 verbose 2 non-random-keys") + if error: + self.logger.critical(error) + self.assertNotIn('failed', error) if __name__ == '__main__': unittest.main(testRunner=VppTestRunner)