From patchwork Fri Mar 17 17:09:14 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olivier Matz X-Patchwork-Id: 21893 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 11EEECFA2; Fri, 17 Mar 2017 19:01:17 +0100 (CET) Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by dpdk.org (Postfix) with ESMTP id 2964DCF7A for ; Fri, 17 Mar 2017 18:09:24 +0100 (CET) Received: from glumotte.dev.6wind.com (unknown [10.16.0.195]) by proxy.6wind.com (Postfix) with ESMTP id 31B4D250AC; Fri, 17 Mar 2017 18:09:19 +0100 (CET) From: Olivier Matz To: dev@dpdk.org Cc: thomas.monjalon@6wind.com, ferruh.yigit@intel.com Date: Fri, 17 Mar 2017 18:09:14 +0100 Message-Id: <1489770555-25936-1-git-send-email-olivier.matz@6wind.com> X-Mailer: git-send-email 2.8.1 Subject: [dpdk-dev] [PATCH] mk: fix message when test application is not built X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- mk/rte.sdktest.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/rte.sdktest.mk b/mk/rte.sdktest.mk index 9cc7d59..daeea90 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