From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3C0A2A0A0A; Thu, 25 Mar 2021 08:34:00 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0BD34140D57; Thu, 25 Mar 2021 08:34:00 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 6F1CE4067B for ; Thu, 25 Mar 2021 08:33:57 +0100 (CET) IronPort-SDR: 4Gr+4thlYdrPkzNt//k3m5fvQ4Jos+qjtDcK4Atss9/iUebBtCTArjnX6UsUbfCdUzOajuD91l RaI6ykkyL75g== X-IronPort-AV: E=McAfee;i="6000,8403,9933"; a="211001567" X-IronPort-AV: E=Sophos;i="5.81,277,1610438400"; d="scan'208";a="211001567" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2021 00:33:56 -0700 IronPort-SDR: +2ZFHDp9YWieiJzAR9kuG7XiSchrnDHXgRLQsT3wHGt7Z+Tbv5hcMk2mE7yK5J7uefVW7kv/Dk ox+N3kyuiNRQ== X-IronPort-AV: E=Sophos;i="5.81,277,1610438400"; d="scan'208";a="415874018" Received: from unknown (HELO localhost.localdomain) ([10.240.183.103]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2021 00:33:55 -0700 From: xiewei To: dts@dpdk.org Cc: xiewei Date: Thu, 25 Mar 2021 23:57:51 +0800 Message-Id: <20210325155751.24219-3-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210325155751.24219-1-weix.xie@intel.com> References: <20210325155751.24219-1-weix.xie@intel.com> Subject: [dts] [PATCH V1 2/2] tests/vf_vlan: adapt to CVL nic X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" adapt to ice driver update for vlan issue on AVF/DCF. vf_vlan_rx: while vlan set filter on, the pkts with random vlan id 1-4095 shall not be received. add_pvid_vf: while ip link set pf_intf vf 0 vlan 0, the pkts with random vlan id 1-4095 shall not be received. Signed-off-by: xiewei --- tests/TestSuite_vf_vlan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_vf_vlan.py b/tests/TestSuite_vf_vlan.py index 28650143..0cc2ba89 100644 --- a/tests/TestSuite_vf_vlan.py +++ b/tests/TestSuite_vf_vlan.py @@ -276,7 +276,7 @@ class TestVfVlan(TestCase): self.vm0_testpmd.execute_cmd("start") out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP") - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify("received" in out, "Failed to received vlan packet!!!") else: self.verify( @@ -398,7 +398,7 @@ class TestVfVlan(TestCase): # send packet with vlan out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP") - if self.driver_version < "2.13.10" or self.kdriver == 'ice': + if self.kdriver == 'i40e' and self.driver_version < "2.13.10": self.verify( "received 1 packets" in out, "Received mismatched vlan packet while vlan filter on") else: -- 2.17.1