X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_bihash.py;h=ac8bab37a7d0c1376fd3cf6f8ea5ae689f9e9e43;hb=7c0eb56f4;hp=e2256042e60f305ff3044aa02e33f46ed44f24fe;hpb=7f9b7f9f492d1748d8ba025b3a713058fdb1943d;p=vpp.git diff --git a/test/test_bihash.py b/test/test_bihash.py index e2256042e60..ac8bab37a7d 100644 --- a/test/test_bihash.py +++ b/test/test_bihash.py @@ -1,8 +1,8 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import unittest -from framework import VppTestCase, VppTestRunner +from framework import VppTestCase, VppTestRunner, running_gcov_tests from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath @@ -25,7 +25,7 @@ class TestBihash(VppTestCase): def test_bihash_unittest(self): """ Bihash Add/Del Test """ - error = self.vapi.cli("test bihash ") + error = self.vapi.cli("test bihash careful 0 verbose 0") if error: self.logger.critical(error) @@ -34,7 +34,28 @@ class TestBihash(VppTestCase): def test_bihash_thread(self): """ Bihash Thread Test """ - error = self.vapi.cli("test bihash threads 2 nbuckets 64000") + error = self.vapi.cli("test bihash threads 2 nbuckets" + + " 64000 careful 0 verbose 0") + + if error: + self.logger.critical(error) + self.assertNotIn('failed', error) + + def test_bihash_vec64(self): + """ Bihash vec64 Test """ + + error = self.vapi.cli("test bihash vec64") + + if error: + 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 """ + + error = self.vapi.cli("test bihash nitems 10 ncycles 3" + + "search 2 careful 1 verbose 2 non-random-keys") if error: self.logger.critical(error)