From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <hvemulax@ecsmtp.ir.intel.com>
Received: from mga05.intel.com (mga05.intel.com [192.55.52.43])
 by dpdk.org (Postfix) with ESMTP id 7DC6B1B925
 for <dev@dpdk.org>; Fri, 12 Oct 2018 16:35:44 +0200 (CEST)
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from orsmga004.jf.intel.com ([10.7.209.38])
 by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 12 Oct 2018 07:35:43 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.54,372,1534834800"; d="scan'208";a="240819402"
Received: from irvmail001.ir.intel.com ([163.33.26.43])
 by orsmga004.jf.intel.com with ESMTP; 12 Oct 2018 07:35:42 -0700
Received: from wgcvswdev002.ir.intel.com (wgcvswdev002.ir.intel.com
 [10.102.246.106])
 by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id
 w9CEZf0Q000471; Fri, 12 Oct 2018 15:35:41 +0100
Received: from wgcvswdev002.ir.intel.com (localhost [127.0.0.1])
 by wgcvswdev002.ir.intel.com with ESMTP id w9CEXXnZ021455;
 Fri, 12 Oct 2018 15:33:33 +0100
Received: (from hvemulax@localhost)
	by wgcvswdev002.ir.intel.com with œ id w9CEXXKO021451;
	Fri, 12 Oct 2018 15:33:33 +0100
From: Hari kumar Vemula <hari.kumarx.vemula@intel.com>
To: dev@dpdk.org
Cc: bruce.richardson@intel.com, reshma.pattan@intel.com,
 Hari Kumar Vemula <hari.kumarx.vemula@intel.com>
Date: Fri, 12 Oct 2018 15:33:19 +0100
Message-Id: <1539354799-21027-6-git-send-email-hari.kumarx.vemula@intel.com>
X-Mailer: git-send-email 1.7.0.7
In-Reply-To: <1537545528-27848-1-git-send-email-hari.kumarx.vemula@intel.com>
References: <1537545528-27848-1-git-send-email-hari.kumarx.vemula@intel.com>
Subject: [dpdk-dev] [PATCH v2 5/5] test: add dump test cases under test-dump
	suite
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Fri, 12 Oct 2018 14:35:45 -0000

From: Hari Kumar Vemula <hari.kumarx.vemula@intel.com>

Grouped logging or dump related test cases to test-dump category

Signed-off-by: Hari Kumar Vemula <hari.kumarx.vemula@intel.com>
---
 test/test/meson.build | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/test/test/meson.build b/test/test/meson.build
index 4668eed81..007c810bb 100644
--- a/test/test/meson.build
+++ b/test/test/meson.build
@@ -236,6 +236,20 @@ driver_test_names = [
         'cryptodev_sw_zuc_autotest',
 ]
 
+#All test cases in dump_test_names list are non-parallel
+dump_test_names = [
+        'dump_struct_sizes',
+        'dump_mempool',
+        'dump_malloc_stats',
+        'dump_devargs',
+        'dump_log_types',
+        'dump_ring',
+        'quit_autotest',
+        'dump_physmem',
+        'dump_memzone',
+        'devargs_autotest',
+]
+
 if dpdk_conf.has('RTE_LIBRTE_PDUMP')
 	test_deps += 'pdump'
 endif
@@ -334,4 +348,12 @@ if get_option('tests')
                         suite : 'test-driver')
         endforeach
 
+        foreach arg : dump_test_names
+                test(arg, dpdk_test,
+                        env : ['DPDK_TEST=' + arg],
+                        timeout : timeout_seconds,
+                        is_parallel : false,
+                        suite : 'test-dump')
+        endforeach
+
 endif
-- 
2.13.6