From patchwork Wed May 11 14:26:10 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 12689 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 2905A685E; Wed, 11 May 2016 16:26:26 +0200 (CEST) Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id 78B585AB3 for ; Wed, 11 May 2016 16:26:19 +0200 (CEST) Received: by mail-wm0-f53.google.com with SMTP id e201so221395862wme.0 for ; Wed, 11 May 2016 07:26:19 -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=2IVCRFW25fJ0zu25SrDl+o2xeZViSxoxrUylAAT1HXg=; b=yuT5uZyOb4+93kw8/biv15zenNQRmvDMBmWkpALSShy0R/0SYSpCH63U9e87wLp/Km RnZX7Qy7gVdVKkW1lUvbdTmpBsWORkOm6wFrJzV69XKsfk8wNdfuH8qpogrIX6+idwrq KH8lp/IzvhTEKdb1xLj1HlHWJVBPB2/eL8TvGfsZIq0l49pU/msaADq9X2wOYdKWDBK/ fYNYLR6kw+Ib7CcGWGFCWLPLcI3Fk1yxtDFqJIIPHLfMgpPf8x+CZRWWCIdg39vUk20N 8BCC85sti4K4zcT2dfc4Vlj7YBcMxZ9lB6DSxEbGa/9WW512iSKB4P5MkN6TUlSBFhQs kwVQ== 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=2IVCRFW25fJ0zu25SrDl+o2xeZViSxoxrUylAAT1HXg=; b=DGZJPyQMzDN/cKyuX4tAmCI48VI96p8SH5JgmG7e3g+bZRLjDC4mopaYuRNPJ6LoBo ianHkLIyyeN41VxGgtbH2LAAvevkjUnoIS4SGbTsyV8eHALRmLTlOA0kqkfS3qm2KPFe TcNS1vEcoBTAAVmwPKV8n/g83+lEq1auVMx85vFt992oVgz2JSJg2cl4jjCQW2Hyjarm VMr2M/QCQw5Z4VRKUkEhLmXAW8hqjrxcwJEcDmUdyZZCaiBYOZ0wpZBaAaMB6pUYBkpG UjWWGCsIzBUYuKDoWhZ2GHK7HhNiAQixybIDIISP/cxsP4F/lQz0B4UU+KZp910FQv4a Lutw== X-Gm-Message-State: AOPr4FVV9VugPkNA07k3PVBS2/Rt9CitkEm4tdlEi1dUP4YClCRt22wqiQSlDMx3MFHJ4x/y X-Received: by 10.194.204.233 with SMTP id lb9mr4037960wjc.147.1462976779323; Wed, 11 May 2016 07:26:19 -0700 (PDT) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id o4sm8368474wjx.45.2016.05.11.07.26.18 for (version=TLSv1/SSLv3 cipher=OTHER); Wed, 11 May 2016 07:26:18 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Wed, 11 May 2016 16:26:10 +0200 Message-Id: <1462976770-6780-5-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 In-Reply-To: <1462976770-6780-1-git-send-email-thomas.monjalon@6wind.com> References: <1462383137-24045-1-git-send-email-thomas.monjalon@6wind.com> <1462976770-6780-1-git-send-email-thomas.monjalon@6wind.com> Subject: [dpdk-dev] [PATCH v2 4/4] app/test: move cycles autotest to first group 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The cycles test was wrongly in the group of mempool perf test. It is moved in parallel test group 1 with timer test. Signed-off-by: Thomas Monjalon --- app/test/autotest_data.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/test/autotest_data.py b/app/test/autotest_data.py index 25cca4e..78d2edd 100644 --- a/app/test/autotest_data.py +++ b/app/test/autotest_data.py @@ -58,6 +58,12 @@ parallel_test_group_list = [ "Tests" : [ { + "Name" : "Cycles autotest", + "Command" : "cycles_autotest", + "Func" : default_autotest, + "Report" : None, + }, + { "Name" : "Timer autotest", "Command" : "timer_autotest", "Func" : timer_autotest, @@ -377,12 +383,6 @@ non_parallel_test_group_list = [ "Tests" : [ { - "Name" : "Cycles autotest", - "Command" : "cycles_autotest", - "Func" : default_autotest, - "Report" : None, - }, - { "Name" : "Mempool performance autotest", "Command" : "mempool_perf_autotest", "Func" : default_autotest,