diff options
author | Damjan Marion <damarion@cisco.com> | 2021-11-06 13:11:37 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-11-06 16:44:56 +0000 |
commit | d67ab10e91db0d172dae2716648121edb9fcdc92 (patch) | |
tree | 4b386718f70789387e916788d2dc17229e263eb0 /test | |
parent | bc1640a5044e8b7a06c3cc6d41543198b81e610c (diff) |
unittest: remove clib_count_equal_* tests
Due to multiarch nature of that code, those tests doesn't bring much
value. New tests will be addes as part of refactor.
Type: refactor
Change-Id: I41056dc99d08cd6ca38f9e00e8cf6a465c90edb7
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_string.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_string.py b/test/test_string.py index c599cf1d3b8..c507c7559ca 100644 --- a/test/test_string.py +++ b/test/test_string.py @@ -32,7 +32,7 @@ class TestString(VppTestCase): "memcmp_s", "memcpy_s", "memset_s ", "strcat_s", "strcmp_s", "strcpy_s", "strncat_s", "strncmp_s", "strncpy_s", - "strnlen_s", "strstr_s", "strtok_s", "clib_count_equal"] + "strnlen_s", "strstr_s", "strtok_s"] for name in names: error = self.vapi.cli("test string " + name) |