X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest_bihash.py;h=019929a0a72680290a7804b749e65caba0a791ca;hb=37b445468e45b537621269fc1e375f26ca2100ee;hp=ac8bab37a7d0c1376fd3cf6f8ea5ae689f9e9e43;hpb=bfb377ce790dc5c44c7868beadb774c59e1d043e;p=vpp.git 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)