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 BE717A0524; Mon, 24 Feb 2020 05:53:12 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 786BF1BE85; Mon, 24 Feb 2020 05:53:12 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 5312F1DBF for ; Mon, 24 Feb 2020 05:53:11 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Feb 2020 20:53:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,478,1574150400"; d="scan'208";a="229741672" Received: from dpdk-yinan-purley.sh.intel.com ([10.67.117.227]) by fmsmga007.fm.intel.com with ESMTP; 23 Feb 2020 20:53:08 -0800 From: Yinan To: dts@dpdk.org Cc: Wang Yinan Date: Sun, 23 Feb 2020 21:47:44 +0000 Message-Id: <20200223214744.66272-1-yinan.wang@intel.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH v1] tests/vf_interrupt_pmd:add more supported nic type 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: Wang Yinan Signed-off-by: Wang Yinan --- tests/TestSuite_vf_interrupt_pmd.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_vf_interrupt_pmd.py b/tests/TestSuite_vf_interrupt_pmd.py index 21b24a1..42dfc02 100644 --- a/tests/TestSuite_vf_interrupt_pmd.py +++ b/tests/TestSuite_vf_interrupt_pmd.py @@ -319,7 +319,8 @@ class TestVfInterruptPmd(TestCase): """ Check Interrupt for VF with vfio driver, need test with i40e driver """ - self.verify(self.nic in ("fortville_spirit"), "the port can not run this suite") + self.verify(self.nic in ["fortville_eagle", "fortville_spirit", +                                 "fortville_spirit_single", "fortpark_TLV"], "%s nic not support fdir vlan filter" % self.nic) self.queues = 4 self.prepare_l3fwd_power(self.dut) self.set_NIC_link() @@ -349,7 +350,8 @@ class TestVfInterruptPmd(TestCase): """ Check for interrupts within the VM, need test with i40e driver """ - self.verify(self.nic in ("fortville_spirit"), "the port can not run this suite") + self.verify(self.nic in ["fortville_eagle", "fortville_spirit", +                                 "fortville_spirit_single", "fortpark_TLV"], "%s nic not support fdir vlan filter" % self.nic) self.setup_vm_env() self.vm0_dut.send_expect("ip link set %s vf 0 mac %s" % (self.host_intf0, self.vf0_mac), "# ") -- 2.17.1