From 609796bad0bd6dfaee05acfcd90bc1ff732add58 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Wed, 27 Oct 2021 16:05:44 +0200 Subject: [PATCH] test: add bitmap to fast tests This test was never added to the list of tests to run in CI. Its name does not follow the implicit convention of ending with _autotest. Let's fix this. Fixes: 5e9647fd5a1a ("test/bitmap: test scan after half cacheline is cleared") Signed-off-by: David Marchand Acked-by: Cristian Dumitrescu --- app/test/meson.build | 1 + app/test/test_bitmap.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/test/meson.build b/app/test/meson.build index 96670c3504..b312bb72e7 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -200,6 +200,7 @@ test_deps = [ fast_tests = [ ['acl_autotest', true], ['atomic_autotest', false], + ['bitmap_autotest', true], ['bpf_autotest', true], ['bpf_convert_autotest', true], ['bitops_autotest', true], diff --git a/app/test/test_bitmap.c b/app/test/test_bitmap.c index 70d8fffb5a..e9c61590ae 100644 --- a/app/test/test_bitmap.c +++ b/app/test/test_bitmap.c @@ -269,4 +269,4 @@ test_bitmap(void) return test_bitmap_all_set(); } -REGISTER_TEST_COMMAND(bitmap_test, test_bitmap); +REGISTER_TEST_COMMAND(bitmap_autotest, test_bitmap); -- 2.39.5