From: Olivier Matz Date: Fri, 17 Mar 2017 17:09:14 +0000 (+0100) Subject: mk: fix message when test application is not built X-Git-Tag: spdx-start~4419 X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=c0920197cd169c0a1dae1e09c3ae001949e0b262 mk: fix message when test application is not built To build the tests, we should use "make test-build". Fixes: 64592d97c1ae ("mk: do not build tests by default") Signed-off-by: Olivier Matz Acked-by: Ferruh Yigit --- diff --git a/mk/rte.sdktest.mk b/mk/rte.sdktest.mk index 9cc7d59c71..daeea90fc5 100644 --- a/mk/rte.sdktest.mk +++ b/mk/rte.sdktest.mk @@ -62,7 +62,7 @@ test test-basic test-fast test-perf: $(RTE_TARGET) \ $(BLACKLIST) $(WHITELIST); \ else \ - echo "No test found, please do a 'make build' first, or specify O=" ; \ + echo "No test found, please do a 'make test-build' first, or specify O=" ; \ fi # this is a special target to ease the pain of running coverage tests @@ -80,5 +80,5 @@ coverage: $(BLACKLIST) $(WHITELIST) ; \ $(RTE_OUTPUT)/app/dpdk-procinfo --file-prefix=ring_perf -- -m; \ else \ - echo "No test found, please do a 'make build' first, or specify O=" ;\ + echo "No test found, please do a 'make test-build' first, or specify O=" ;\ fi