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',