From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C44D1A046B for ; Tue, 20 Aug 2019 04:12:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 833401B994; Tue, 20 Aug 2019 04:12:48 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 2AA761B96B for ; Tue, 20 Aug 2019 04:12:46 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Aug 2019 19:12:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,407,1559545200"; d="scan'208";a="378398095" Received: from dpdk-qifu-1.sh.intel.com ([10.67.119.198]) by fmsmga006.fm.intel.com with ESMTP; 19 Aug 2019 19:12:45 -0700 From: qifu To: dts@dpdk.org Cc: qifu Date: Tue, 20 Aug 2019 11:02:12 +0000 Message-Id: <20190820110212.50540-1-qi.fu@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190819180912.60771-1-qi.fu@intel.com> References: <20190819180912.60771-1-qi.fu@intel.com> Subject: [dts] [PATCH V3 08/17]tests/TestSuite_ipgre: add carlsville to support nic of ipgre X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" Add carlsville to support nic of ipgre. Signed-off-by: qifu --- tests/TestSuite_ipgre.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_ipgre.py b/tests/TestSuite_ipgre.py index 6f465fa..7fbddf1 100644 --- a/tests/TestSuite_ipgre.py +++ b/tests/TestSuite_ipgre.py @@ -63,8 +63,8 @@ class TestIpgre(TestCase): """ self.printFlag = self._enable_debug ports = self.dut.get_ports() - self.verify(self.nic.startswith("fortville"), - "GRE tunnel packet type only support by Fortville") + self.verify(self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "carlsville"], + "GRE tunnel packet type only support by fortville and carlsville") self.verify(len(ports) >= 1, "Insufficient ports for testing") valports = [_ for _ in ports if self.tester.get_local_port(_) != -1] # start testpmd -- 2.17.1