mk: fix message when test application is not built
authorOlivier Matz <olivier.matz@6wind.com>
Fri, 17 Mar 2017 17:09:14 +0000 (18:09 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 27 Mar 2017 08:44:53 +0000 (10:44 +0200)
To build the tests, we should use "make test-build".

Fixes: 64592d97c1ae ("mk: do not build tests by default")

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
mk/rte.sdktest.mk

index 9cc7d59..daeea90 100644 (file)
@@ -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