From: Thomas Monjalon Date: Wed, 11 May 2016 09:09:15 +0000 (+0200) Subject: mk: fix autotest lists X-Git-Tag: spdx-start~6855 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b07d06a81a889d091f22c0ab85208f931a47582a;p=dpdk.git mk: fix autotest lists The perf test lists were not consistent. Add timer perf test to the list. Add LPM6 test to fast tests. And fix the phony target. Signed-off-by: Thomas Monjalon --- diff --git a/mk/rte.sdktest.mk b/mk/rte.sdktest.mk index c0c4023c2c..ff5718196d 100644 --- a/mk/rte.sdktest.mk +++ b/mk/rte.sdktest.mk @@ -46,11 +46,13 @@ DIR := $(shell basename $(RTE_OUTPUT)) # # test: launch auto-tests, very simple for now. # -PHONY: test fast_test +.PHONY: test 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) -coverage: BLACKLIST=-Mempool_perf,Memcpy_perf,Hash_perf -fast_test: BLACKLIST=-Ring_perf,Mempool_perf,Memcpy_perf,Hash_perf,Lpm6 -perf_test:WHITELIST=Mempool_perf,Memcpy_perf,Hash_perf,Ring_perf test fast_test perf_test: @mkdir -p $(AUTOTEST_DIR) ; \ cd $(AUTOTEST_DIR) ; \