test: add bitmap to fast tests
authorDavid Marchand <david.marchand@redhat.com>
Wed, 27 Oct 2021 14:05:44 +0000 (16:05 +0200)
committerDavid Marchand <david.marchand@redhat.com>
Wed, 10 Nov 2021 10:42:34 +0000 (11:42 +0100)
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 <david.marchand@redhat.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
app/test/meson.build
app/test/test_bitmap.c

index 96670c3..b312bb7 100644 (file)
@@ -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],
index 70d8fff..e9c6159 100644 (file)
@@ -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);