From 57660eba79a915dc0fa4d7d1e8c7f78f89866e43 Mon Sep 17 00:00:00 2001 From: Yipeng Wang Date: Fri, 26 Oct 2018 02:53:46 -0700 Subject: [PATCH] test/hash: add r/w concurrency to autotest Add read-write concurrency test to meson and autotest file. Fixes: 0eb3726ebcf1 ("test/hash: add test for read/write concurrency") Cc: stable@dpdk.org Signed-off-by: Yipeng Wang --- test/test/autotest_data.py | 6 ++++++ test/test/meson.build | 1 + 2 files changed, 7 insertions(+) diff --git a/test/test/autotest_data.py b/test/test/autotest_data.py index 92656177f9..0df686ad15 100644 --- a/test/test/autotest_data.py +++ b/test/test/autotest_data.py @@ -573,6 +573,12 @@ non_parallel_test_list = [ "Func": default_autotest, "Report": None, }, + { + "Name": "Hash read-write concurrency autotest", + "Command": "hash_readwrite_autotest", + "Func": default_autotest, + "Report": None, + }, { "Name": "Hash read-write lock-free concurrency autotest", "Command": "hash_readwrite_lf_autotest", diff --git a/test/test/meson.build b/test/test/meson.build index 7ebe9aba7f..1c1fcd71bf 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -173,6 +173,7 @@ test_names = [ 'hash_functions_autotest', 'hash_multiwriter_autotest', 'hash_perf_autotest', + 'hash_readwrite_autotest', 'hash_readwrite_lf_autotest', 'interrupt_autotest', 'kni_autotest', -- 2.20.1