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 E2F17A0093; Mon, 15 Jun 2020 05:01:44 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8FD181BEAC; Mon, 15 Jun 2020 05:01:44 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 752E01BE9C for ; Mon, 15 Jun 2020 05:01:42 +0200 (CEST) IronPort-SDR: fM6KUw5G88cIQ6tlCmbiDNUFOZL63HzLH0A/PJnX4WxqlHUef8ZjcsH1GDamxLjpzW39p0nWel PTbwJyEVd72Q== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jun 2020 20:01:41 -0700 IronPort-SDR: 3hYWtSP6sT0+gZMwvKEMUGu5Dr3mYXg3UXiQmrAAuFJAlTLhsFuyiwBO3Hl4W3C52sgZejtzwP 8DFTQjqCztlA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,513,1583222400"; d="scan'208";a="382387490" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by fmsmga001.fm.intel.com with ESMTP; 14 Jun 2020 20:01:40 -0700 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Mon, 15 Jun 2020 11:02:02 +0800 Message-Id: <20200615030202.24725-1-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/vf_macfilter: add NIC 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_macfilter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vf_macfilter.py b/tests/TestSuite_vf_macfilter.py index dc30059..7ce5d38 100644 --- a/tests/TestSuite_vf_macfilter.py +++ b/tests/TestSuite_vf_macfilter.py @@ -67,7 +67,7 @@ class TestVfMacFilter(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/2C/2T") -- 2.17.1