From: Yipeng Wang Date: Fri, 26 Oct 2018 09:53:46 +0000 (-0700) Subject: test/hash: add r/w concurrency to autotest X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;ds=sidebyside;h=57660eba79a915dc0fa4d7d1e8c7f78f89866e43;p=dpdk.git 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 --- 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',