]> git.droids-corp.org - dpdk.git/commitdiff
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 96670c350478791d25b34faae7294b3522373e7a..b312bb72e7a35c824d4c9f2ec82d533c313baf6a 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 70d8fffb5a92620182cd084de65fd0ffefbb4184..e9c61590aef750889e0a95d63e8c91416817a9e1 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);