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 C243EA0588; Tue, 21 Apr 2020 10:57:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 984C11D971; Tue, 21 Apr 2020 10:57:09 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id E02401D94E for ; Tue, 21 Apr 2020 10:57:01 +0200 (CEST) IronPort-SDR: 2jKL8y+F/xHNsuQGFPGvygbZRioo6I6FN2/igRm6LLTGooj7fh/tsUxO+elLEKh+QRaPpV+6Vb Ihhe2vwuwHmQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2020 01:57:00 -0700 IronPort-SDR: d6tTtEKey5YIMB3R1otL9npeCnea7i47kKgv3fFLgvs2ZQV3mxbMif8YYifJ8ErNMFlykjP4SL SEw9SyqdJv1A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,409,1580803200"; d="scan'208";a="273459858" Received: from unknown (HELO dpdk-zhaohy-t.localdomain) ([10.240.183.68]) by orsmga002.jf.intel.com with ESMTP; 21 Apr 2020 01:56:59 -0700 From: "Xu, Hailin" To: dts@dpdk.org Cc: "xu,hailin" Date: Tue, 21 Apr 2020 16:48:45 +0800 Message-Id: <1587458925-262121-1-git-send-email-hailinx.xu@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH v2] tests/TestSuite_rxtx_offload:add nic carlsville. 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" From: "xu,hailin" carlsville driver is i40e, so the nic support the suite. Signed-off-by: xu,hailin --- tests/TestSuite_rxtx_offload.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/TestSuite_rxtx_offload.py b/tests/TestSuite_rxtx_offload.py index f387995..dcd1212 100644 --- a/tests/TestSuite_rxtx_offload.py +++ b/tests/TestSuite_rxtx_offload.py @@ -89,7 +89,7 @@ class TestRxTx_Offload(TestCase): """ # Support i40e/ixgbe NICs self.verify(self.nic in ["fortville_eagle", "fortville_spirit","fortville_25g", - "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", + "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", "carlsville", "niantic", "twinpond", "sagepond", "sageville", "foxville"], "NIC Unsupported: " + str(self.nic)) # Based on h/w type, choose how many ports to use self.dut_ports = self.dut.get_ports(self.nic) @@ -505,7 +505,7 @@ class TestRxTx_Offload(TestCase): self.dut.send_expect("set fwd txonly", "testpmd> ") self.dut.send_expect("set verbose 1", "testpmd> ") if (self.nic in ["fortville_eagle", "fortville_spirit","fortville_25g", - "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T"]): + "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", "carlsville"]): self.dut.send_expect("port stop 0", "testpmd> ") self.dut.send_expect("port config 0 tx_offload mbuf_fast_free off", "testpmd> ") self.check_port_config("tx", "NULL") @@ -545,7 +545,7 @@ class TestRxTx_Offload(TestCase): self.dut.send_expect("set fwd txonly", "testpmd> ") self.dut.send_expect("set verbose 1", "testpmd> ") if (self.nic in ["fortville_eagle", "fortville_spirit","fortville_25g", - "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T"]): + "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", "carlsville"]): self.dut.send_expect("port stop 0", "testpmd> ") self.dut.send_expect("port config 0 tx_offload mbuf_fast_free off", "testpmd> ") offload = ["vlan_insert"] @@ -660,7 +660,7 @@ class TestRxTx_Offload(TestCase): capabilities = self.check_port_capability("tx") # Disable per queue capability first, if it is FVL/Fortpark. if (self.nic in ["fortville_eagle", "fortville_spirit","fortville_25g", - "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T"]): + "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", "carlsville"]): self.dut.send_expect("port stop 0", "testpmd> ") self.dut.send_expect("port config 0 tx_offload mbuf_fast_free off", "testpmd> ") self.dut.send_expect("port start 0", "testpmd> ") -- 1.8.3.1