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 378A0A046B for ; Mon, 19 Aug 2019 04:17:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2AEF51BEA6; Mon, 19 Aug 2019 04:17:08 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 850DA1BE9A for ; Mon, 19 Aug 2019 04:17:06 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Aug 2019 19:17:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,403,1559545200"; d="scan'208";a="377288293" Received: from dpdk-qifu-1.sh.intel.com ([10.67.119.198]) by fmsmga005.fm.intel.com with ESMTP; 18 Aug 2019 19:17:05 -0700 From: qifu To: dts@dpdk.org Cc: qifu Date: Mon, 19 Aug 2019 11:06:19 +0000 Message-Id: <20190819110625.73544-12-qi.fu@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190819110625.73544-1-qi.fu@intel.com> References: <20190819110625.73544-1-qi.fu@intel.com> Subject: [dts] [PATCH 11/17] tests/TestSuite_pmdrss_hash: add carlsville to support nic of pmdrss_hash 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 pmdrss_hash. Signed-off-by: qifu --- tests/TestSuite_pmdrss_hash.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_pmdrss_hash.py b/tests/TestSuite_pmdrss_hash.py index 32dc263..72c4ef2 100644 --- a/tests/TestSuite_pmdrss_hash.py +++ b/tests/TestSuite_pmdrss_hash.py @@ -415,12 +415,12 @@ class TestPmdrssHash(TestCase): self.verify(self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "redrockcanyou", "atwood", - "boulderrapid", "fortpark_TLV", "fortville_25g", "niantic"], + "boulderrapid", "fortpark_TLV", "fortville_25g", "niantic", "carlsville"], "NIC Unsupported: " + str(self.nic)) global reta_num global iptypes - if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]: + if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortpark_TLV", "fortville_25g", "carlsville"]: reta_num = 512 elif self.nic in ["niantic"]: reta_num = 128 @@ -614,7 +614,7 @@ class TestPmdrssHash(TestCase): # setup testpmd and finish bond config self.verify(self.nic in ["fortville_eagle", "fortville_spirit", - "fortpark_TLV", "fortville_25g"], + "fortpark_TLV", "fortville_25g", "carlsville"], "NIC Unsupported: " + str(self.nic)) self.dut.send_expect("./%s/app/testpmd -c %s -n %d -- -i" % (self.target, self.coremask, self.dut.get_memory_channels()), "testpmd> ", 120) -- 2.17.1