From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id 310F4C3D0 for ; Wed, 11 May 2016 11:46:34 +0200 (CEST) Received: by mail-wm0-f49.google.com with SMTP id g17so72208096wme.1 for ; Wed, 11 May 2016 02:46:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:in-reply-to:references; bh=exOP0tLZX58ZdQIE3EneKABqejLvSlMZmMD8K5ygmko=; b=b9LwZ82UCj/W4tvYdzJ5YfTMurUdxH2vOdrt5TkI29TSS4fXVH2upV/aEQx+oI1mrO 5ECJTDE/megurcINpMNNHWU7xi8N+UjuFB7hFsnguxB75txNwrFdktwf5qm9L+iJ06Ov q0KWDeFeLsRb8l6fJqSyQIBZHkmdu1qb2B6hfW/veMYQEjyippEvPzcN/unz3hC+01r9 YS4qQ5Y/NVoEccQytrojRcWpKaD8V8mnZR1pMBHrYid89ruPOHG1pZhaqWpBoKRqQw+Z XT28wyMTByMOZLIky3Mj/S8jqBH6bT4Q7srtwmZ1KHhmIViguff2fWhtCQdW5fYPXfkt WK7A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=exOP0tLZX58ZdQIE3EneKABqejLvSlMZmMD8K5ygmko=; b=DnpoBzJG399xU1Z4amE18BYpYe9J7CGt/jTwOSv+6N8slVfGvadaMz4pu3j/VzCrYI VPHDqw4pWbQfLZFQCgy9r7DH9bsohcD6MAuo02NVM1nrE2gjQZTgqa8DOehthdq19eIc cnTf/XXq/SmTbXeMO451BjDfOS3MaphPAq9kR4o/Wrh3M5EZH3gPyFYuoSiObT0FS/iC E7yk43A5u3qEdSxHAgsMblI8b5NtUb5zxlZShBuufiR1xyTdmOgvWcnOYv81lLhN00D6 LtqJtOKRp77J2NFJDanAr51U1XHCmFFDKmo2vSk3O3Wn865nqgHKnZ9+g8f4PE0lsHuO tIew== X-Gm-Message-State: AOPr4FUmUT1jgitvJ3bYjk+GM/JPR53WcXs099rOub/+nDC5aGyumq13927UaVjocnXeYIcD X-Received: by 10.28.161.198 with SMTP id k189mr22588629wme.23.1462959994090; Wed, 11 May 2016 02:46:34 -0700 (PDT) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id x124sm7515160wmg.24.2016.05.11.02.46.33 for (version=TLSv1/SSLv3 cipher=OTHER); Wed, 11 May 2016 02:46:33 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Wed, 11 May 2016 11:46:27 +0200 Message-Id: <1462959987-27930-2-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 In-Reply-To: <1462959987-27930-1-git-send-email-thomas.monjalon@6wind.com> References: <1462958821-25249-1-git-send-email-thomas.monjalon@6wind.com> <1462959987-27930-1-git-send-email-thomas.monjalon@6wind.com> Subject: [dpdk-dev] [PATCH v2 2/2] mk: fix autotest lists X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 May 2016 09:46:34 -0000 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 --- mk/rte.sdktest.mk | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/mk/rte.sdktest.mk b/mk/rte.sdktest.mk index c0c4023..a6489b0 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) ; \ -- 2.7.0