From patchwork Fri Jul 24 10:00:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xie, WeiX" X-Patchwork-Id: 74744 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C6622A0518; Fri, 24 Jul 2020 12:00:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9DD001C01E; Fri, 24 Jul 2020 12:00:54 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 43CFA1C012 for ; Fri, 24 Jul 2020 12:00:53 +0200 (CEST) IronPort-SDR: wGT0c8J+vIkxKvDyuDOhbB0hEVd29xJDjWAvlgoFA+AfsYidl/LWs6vLnYnX156uLn80xRda6R snGSeDa0VLUw== X-IronPort-AV: E=McAfee;i="6000,8403,9691"; a="148176914" X-IronPort-AV: E=Sophos;i="5.75,390,1589266800"; d="scan'208";a="148176914" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Jul 2020 03:00:52 -0700 IronPort-SDR: /8IkkmpLBSxBFLYKkFvrwLCHuSKaCxGGNxoEFA4UL9I7xV7wFXknWKPC9MqV6Smi8f8ZULj9vH TzqelnIxaeGA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,390,1589266800"; d="scan'208";a="393270969" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by fmsmga001.fm.intel.com with ESMTP; 24 Jul 2020 03:00:51 -0700 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Fri, 24 Jul 2020 18:00:17 +0800 Message-Id: <20200724100017.29576-1-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/vf_packet_rxtx:add twinpond supported 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 twinpond(ixgbe driver)supported Signed-off-by: Xie wei --- tests/TestSuite_vf_packet_rxtx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vf_packet_rxtx.py b/tests/TestSuite_vf_packet_rxtx.py index 8fc2a5f..a596305 100644 --- a/tests/TestSuite_vf_packet_rxtx.py +++ b/tests/TestSuite_vf_packet_rxtx.py @@ -65,7 +65,7 @@ class TestVfPacketRxtx(TestCase): if driver == 'igb_uio': # start testpmd without the two VFs on the host self.host_testpmd = PmdOutput(self.dut) - if (self.nic in ["niantic", "sageville", "sagepond"]): + if (self.nic in ["niantic", "sageville", "sagepond", "twinpond"]): self.host_testpmd.start_testpmd("1S/9C/1T", "--txq=4 --rxq=4 ") else: self.host_testpmd.start_testpmd("1S/5C/1T")