From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id C90E4532C for ; Fri, 2 Feb 2018 03:58:37 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Feb 2018 18:58:36 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,445,1511856000"; d="scan'208";a="31364064" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by orsmga002.jf.intel.com with ESMTP; 01 Feb 2018 18:58:36 -0800 From: "zhao,meijuan" To: dts@dpdk.org Cc: "zhao,meijuan" Date: Fri, 2 Feb 2018 10:59:48 +0800 Message-Id: <1517540388-39050-1-git-send-email-meijuanx.zhao@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/vf_vlan : enable hw vlan,filter and strip 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: , X-List-Received-Date: Fri, 02 Feb 2018 02:58:38 -0000 need enable hw vlan,filter and vlan you can refer to dpdk commit 8b9bd0ef Signed-off-by: zhao,meijuan --- 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 c0b26a3..fea0243 100644 --- a/tests/TestSuite_vf_vlan.py +++ b/tests/TestSuite_vf_vlan.py @@ -374,9 +374,9 @@ class TestVfVlan(TestCase): self.vm0_testpmd = PmdOutput(self.vm_dut_0) if self.kdriver == "i40e": - self.vm0_testpmd.start_testpmd(VM_CORES_MASK, '') + self.vm0_testpmd.start_testpmd(VM_CORES_MASK, ' --enable-hw-vlan --enable-hw-vlan-filter --enable-hw-vlan-strip') else: - self.vm0_testpmd.start_testpmd(VM_CORES_MASK) + self.vm0_testpmd.start_testpmd(VM_CORES_MASK, ' --enable-hw-vlan --enable-hw-vlan-filter --enable-hw-vlan-strip') self.vm0_testpmd.execute_cmd('set fwd rxonly') self.vm0_testpmd.execute_cmd('set verbose 1') self.vm0_testpmd.execute_cmd('start') -- 1.9.3