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 <yipeng1.wang@intel.com>
This commit is contained in:
Yipeng Wang 2018-10-26 02:53:46 -07:00 committed by Thomas Monjalon
parent 3c518ca41f
commit 57660eba79
2 changed files with 7 additions and 0 deletions

View File

@ -573,6 +573,12 @@ non_parallel_test_list = [
"Func": default_autotest, "Func": default_autotest,
"Report": None, "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", "Name": "Hash read-write lock-free concurrency autotest",
"Command": "hash_readwrite_lf_autotest", "Command": "hash_readwrite_lf_autotest",

View File

@ -173,6 +173,7 @@ test_names = [
'hash_functions_autotest', 'hash_functions_autotest',
'hash_multiwriter_autotest', 'hash_multiwriter_autotest',
'hash_perf_autotest', 'hash_perf_autotest',
'hash_readwrite_autotest',
'hash_readwrite_lf_autotest', 'hash_readwrite_lf_autotest',
'interrupt_autotest', 'interrupt_autotest',
'kni_autotest', 'kni_autotest',