From c520dcb49fa07d30de4944344b66fc325b44f17d Mon Sep 17 00:00:00 2001 From: Jing Peng Date: Fri, 8 Apr 2022 14:19:32 -0400 Subject: tests: fix bihash unittest error reporting This patch fixes test_bihash_unittest in two ways: 1. The number of searches, namely tm->search_iter, defaults to 0, thus disabling the test. This patch changes the default to 1. 2. Test errors are reported by clib_warning() instead of being returned, thus the caller test/test_bihash.py is never aware of them. This patch returns the errors constructed by clib_error_return(). Type: fix Signed-off-by: Jing Peng Change-Id: I60e99a829ebe6aa2a56e7a9332cf973afa100311 --- src/plugins/unittest/bihash_test.c | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) (limited to 'src/plugins') diff --git a/src/plugins/unittest/bihash_test.c b/src/plugins/unittest/bihash_test.c index 0789735c1d7..f4ca3bb29b4 100644 --- a/src/plugins/unittest/bihash_test.c +++ b/src/plugins/unittest/bihash_test.c @@ -338,14 +338,18 @@ test_bihash (bihash_test_main_t * tm) { kv.key = tm->keys[i]; if (BV (clib_bihash_search) (h, &kv, &kv) < 0) - if (BV (clib_bihash_search) (h, &kv, &kv) < 0) - clib_warning - ("[%d] search for key %lld failed unexpectedly\n", i, - tm->keys[i]); + { + if (BV (clib_bihash_search) (h, &kv, &kv) < 0) + { + return clib_error_return ( + 0, "[%d] search for key %lld failed unexpectedly\n", i, + tm->keys[i]); + } + } if (kv.value != (u64) (i + 1)) - clib_warning - ("[%d] search for key %lld returned %lld, not %lld\n", i, - tm->keys, kv.value, (u64) (i + 1)); + return clib_error_return ( + 0, "[%d] search for key %lld returned %lld, not %lld\n", i, + tm->keys, kv.value, (u64) (i + 1)); } } @@ -373,7 +377,8 @@ test_bihash (bihash_test_main_t * tm) { p = hash_get (tm->key_hash, tm->keys[i]); if (p == 0 || p[0] != (uword) (i + 1)) - clib_warning ("ugh, couldn't find %lld\n", tm->keys[i]); + return clib_error_return (0, "ugh, couldn't find %lld\n", + tm->keys[i]); } } @@ -401,8 +406,8 @@ test_bihash (bihash_test_main_t * tm) rv = BV (clib_bihash_add_del) (h, &kv, 0 /* is_add */ ); if (rv < 0) - clib_warning ("delete key %lld not ok but should be", - tm->keys[i]); + return clib_error_return ( + 0, "delete key %lld not ok but should be", tm->keys[i]); if (tm->careful_delete_tests) { @@ -412,14 +417,14 @@ test_bihash (bihash_test_main_t * tm) rv = BV (clib_bihash_search) (h, &kv, &kv); if (j <= i && rv >= 0) { - clib_warning - ("i %d j %d search ok but should not be, value %lld", - i, j, kv.value); + return clib_error_return ( + 0, "i %d j %d search ok but should not be, value %lld", + i, j, kv.value); } if (j > i && rv < 0) { - clib_warning ("i %d j %d search not ok but should be", - i, j); + return clib_error_return ( + 0, "i %d j %d search not ok but should be", i, j); } } } @@ -471,6 +476,7 @@ test_bihash_command_fn (vlib_main_t * vm, tm->ncycles = 10; tm->report_every_n = 50000; tm->seed = 0x1badf00d; + tm->search_iter = 1; memset (&tm->stats, 0, sizeof (tm->stats)); -- cgit 1.2.3-korg