From: Yipeng Wang Date: Fri, 28 Sep 2018 14:11:08 +0000 (-0700) Subject: test/hash: add missing file in meson build X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5437d81dbb5810939244ef231e928d4cf28a3551;p=dpdk.git test/hash: add missing file in meson build The test_hash_readwrite.c was not in the meson.build file. This commit adds the missing test into the file. Fixes: 0eb3726ebcf1 ("test/hash: add test for read/write concurrency") Cc: stable@dpdk.org Signed-off-by: Yipeng Wang Acked-by: Bruce Richardson --- diff --git a/test/test/meson.build b/test/test/meson.build index 7c6e3b00b4..90d66070d1 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -44,6 +44,7 @@ test_sources = files('commands.c', 'test_hash.c', 'test_hash_functions.c', 'test_hash_multiwriter.c', + 'test_hash_readwrite.c', 'test_hash_perf.c', 'test_hash_scaling.c', 'test_interrupts.c',