From cef26406ba22124a6ad6441a7ffee62bb44e9581 Mon Sep 17 00:00:00 2001 From: Anatoly Burakov Date: Wed, 24 Jul 2019 16:47:31 +0100 Subject: [PATCH] test: enable installing app with meson Currently, the test app is not being installed by default when built and installed with meson build system. Fix that to enable installation of the test app alongside other DPDK apps. Fixes: b5dc795a8a55 ("test: build app with meson as dpdk-test") Cc: stable@dpdk.org Signed-off-by: Anatoly Burakov Acked-by: Bruce Richardson --- app/test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/meson.build b/app/test/meson.build index 1834897bf2..c50b202757 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -359,7 +359,7 @@ dpdk_test = executable('dpdk-test', dependencies: test_dep_objs, c_args: [cflags, '-DALLOW_EXPERIMENTAL_API'], install_rpath: driver_install_path, - install: false) + install: true) # some perf tests (eg: memcpy perf autotest)take very long # to complete, so timeout to 10 minutes -- 2.20.1