aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_bihash.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_bihash.py')
-rw-r--r--test/test_bihash.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_bihash.py b/test/test_bihash.py
index ac8bab37a7d..019929a0a72 100644
--- a/test/test_bihash.py
+++ b/test/test_bihash.py
@@ -61,5 +61,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)