From fdc4addcafdb9eb2d3168974f75ca55f23b54863 Mon Sep 17 00:00:00 2001 From: Ferruh Yigit Date: Thu, 16 Feb 2017 14:57:44 +0000 Subject: [PATCH] mk: add new test-basic rule Since "make test" and "make test-build" does dependency resolving, they check for all dependent components (lib and drivers) which takes a few seconds. This is a good feature during development, but if the target is only running unit test, that step is unnecessary, it is possible to compile once and run unit test multiple times, without checking any code update. For this purpose, a new make rule "make test-basic" added. Which only runs the unit test, expects that unit test already compiled. Signed-off-by: Ferruh Yigit Acked-by: Bruce Richardson --- mk/rte.sdkroot.mk | 4 ++-- mk/rte.sdktest.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index 1bc0f94de8..498a85e87e 100644 --- a/mk/rte.sdkroot.mk +++ b/mk/rte.sdkroot.mk @@ -92,8 +92,8 @@ default: all config showconfigs showversion showversionum: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk $@ -.PHONY: test fast_test ring_test mempool_test perf_test coverage -test fast_test ring_test mempool_test perf_test coverage: +.PHONY: test test-basic fast_test ring_test mempool_test perf_test coverage +test test-basic fast_test ring_test mempool_test perf_test coverage: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktest.mk $@ .PHONY: test-buid diff --git a/mk/rte.sdktest.mk b/mk/rte.sdktest.mk index 1cdb40ba52..d61d4d0acb 100644 --- a/mk/rte.sdktest.mk +++ b/mk/rte.sdktest.mk @@ -46,14 +46,14 @@ DIR := $(shell basename $(RTE_OUTPUT)) # # test: launch auto-tests, very simple for now. # -.PHONY: test fast_test perf_test coverage +.PHONY: test test-basic fast_test perf_test coverage PERFLIST=ring_perf,mempool_perf,memcpy_perf,hash_perf,timer_perf coverage: BLACKLIST=-$(PERFLIST) fast_test: BLACKLIST=-$(PERFLIST) perf_test: WHITELIST=$(PERFLIST) -test fast_test perf_test: +test test-basic fast_test perf_test: @mkdir -p $(AUTOTEST_DIR) ; \ cd $(AUTOTEST_DIR) ; \ if [ -f $(RTE_OUTPUT)/app/test ]; then \ -- 2.20.1