From: Ferruh Yigit Date: Thu, 16 Feb 2017 14:57:45 +0000 (+0000) Subject: mk: rename test related rules X-Git-Tag: spdx-start~4447 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=a3df7f8d9c63d6fd66032f6e27aa52863147134d;p=dpdk.git mk: rename test related rules Make rules renamed to a common syntax, test-x: fast_test -> test-fast ring_test -> test-ring mempool_test -> test-mempool perf_test -> test-perf These are to run various sub-set of the unit tests. Not touched to make rules that are already following the syntax: test-basic test-build test Signed-off-by: Ferruh Yigit Acked-by: Bruce Richardson --- diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index 498a85e87e..7598bde435 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 test-basic fast_test ring_test mempool_test perf_test coverage -test test-basic fast_test ring_test mempool_test perf_test coverage: +.PHONY: test test-basic test-fast test-ring test-mempool test-perf coverage +test test-basic test-fast test-ring test-mempool test-perf 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 d61d4d0acb..9cc7d59c71 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 test-basic fast_test perf_test coverage +.PHONY: test test-basic test-fast test-perf 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: BLACKLIST=-$(PERFLIST) +test-perf: WHITELIST=$(PERFLIST) -test test-basic fast_test perf_test: +test test-basic test-fast test-perf: @mkdir -p $(AUTOTEST_DIR) ; \ cd $(AUTOTEST_DIR) ; \ if [ -f $(RTE_OUTPUT)/app/test ]; then \