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 1497EA0561; Mon, 20 Apr 2020 11:01:35 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CA7001C2A3; Mon, 20 Apr 2020 11:01:34 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 065171BF83 for ; Mon, 20 Apr 2020 11:01:32 +0200 (CEST) IronPort-SDR: oZvUVL9cMjl3o52/zDIgHVIVeL5/OjPD05HCFpO5CpFw2xHl/ICBAmbrJyY70dYFYSc22Hu1cj wciDXqZ2i+OA== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Apr 2020 02:01:32 -0700 IronPort-SDR: OWw7tJH782N+3qnm8VhZF2+I8FPu9CN64MQXuI1/YtqhC0KzaltMjMkNl4eLw1w++o7WAlg1OX ukG0StXY1BpQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,406,1580803200"; d="scan'208";a="333861944" Received: from unknown (HELO dpdk-zhaohy-t.localdomain) ([10.240.183.68]) by orsmga001.jf.intel.com with ESMTP; 20 Apr 2020 02:01:31 -0700 From: "Xu, Hailin" To: dts@dpdk.org Cc: "xu,hailin" Date: Mon, 20 Apr 2020 16:53:25 +0800 Message-Id: <1587372805-116689-1-git-send-email-hailinx.xu@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH v2] tests/TestSuite_vf_interrupt_pmd: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_vf_interrupt_pmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_vf_interrupt_pmd.py b/tests/TestSuite_vf_interrupt_pmd.py index dde20a0..55a8e3d 100644 --- a/tests/TestSuite_vf_interrupt_pmd.py +++ b/tests/TestSuite_vf_interrupt_pmd.py @@ -319,7 +319,7 @@ class TestVfInterruptPmd(TestCase): """ Check Interrupt for VF with vfio driver, need test with i40e driver """ - self.verify(self.nic in ['fortville_eagle', 'fortville_spirit', 'fortville_spirit_single', 'fortpark_TLV',"fortpark_BASE-T"], '%s nic port not support vf multi-queues interrupt' % str(self.nic)) + self.verify(self.nic in ['fortville_eagle', 'fortville_spirit', 'fortville_spirit_single', 'fortpark_TLV',"fortpark_BASE-T", 'carlsville'], '%s nic port not support vf multi-queues interrupt' % str(self.nic)) self.queues = 4 self.prepare_l3fwd_power(self.dut) self.set_NIC_link() @@ -349,7 +349,7 @@ class TestVfInterruptPmd(TestCase): """ Check for interrupts within the VM, need test with i40e driver """ - self.verify(self.nic in ['fortville_eagle', 'fortville_spirit', 'fortville_spirit_single','fortpark_TLV', 'fortpark_BASE-T'], '%s nic port not support vf multi-queues interrupt' % str(self.nic)) + self.verify(self.nic in ['fortville_eagle', 'fortville_spirit', 'fortville_spirit_single','fortpark_TLV', 'fortpark_BASE-T', 'carlsville'], '%s nic port not support vf multi-queues interrupt' % str(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), "# ") -- 1.8.3.1