diff options
author | Dave Barach <dave@barachs.net> | 2019-05-07 10:30:18 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-05-07 19:50:22 +0000 |
commit | 749a89c3179d86a791ec779b6c2006e4649883f6 (patch) | |
tree | 6754fc7fedb636bf469d34e70a1b3d0ad294ae60 | |
parent | cc991497b830658bdf65b93538d91467ecddef42 (diff) |
Improve lcov reported code coverage stats
Remove unused code from the vppinfra build
Add a bihash test case
Change-Id: Ia930309efa28620dd1c0d69aaec432e2d8bd962c
Signed-off-by: Dave Barach <dave@barachs.net>
-rw-r--r-- | src/vppinfra/CMakeLists.txt | 3 | ||||
-rw-r--r-- | test/test_bihash.py | 25 |
2 files changed, 23 insertions, 5 deletions
diff --git a/src/vppinfra/CMakeLists.txt b/src/vppinfra/CMakeLists.txt index 702f6fdcae5..02e5322e1fc 100644 --- a/src/vppinfra/CMakeLists.txt +++ b/src/vppinfra/CMakeLists.txt @@ -39,7 +39,6 @@ install( # vppinfra sources ############################################################################## set(VPPINFRA_SRCS - asm_x86.c backtrace.c cpu.c cuckoo_template.c @@ -88,8 +87,6 @@ set(VPPINFRA_SRCS ) set(VPPINFRA_HEADERS - asm_mips.h - asm_x86.h bihash_16_8.h bihash_24_8.h bihash_40_8.h diff --git a/test/test_bihash.py b/test/test_bihash.py index e2256042e60..ccebea3ac75 100644 --- a/test/test_bihash.py +++ b/test/test_bihash.py @@ -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,11 +34,32 @@ 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) + + 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) + self.assertNotIn('failed', error) + + if __name__ == '__main__': unittest.main(testRunner=VppTestRunner) |