From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 125B53005 for ; Mon, 14 Mar 2016 04:16:06 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP; 13 Mar 2016 20:16:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,334,1455004800"; d="scan'208";a="763511196" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.238.55.12]) by orsmga003.jf.intel.com with ESMTP; 13 Mar 2016 20:16:05 -0700 From: Lijuan Tu To: yong.liu@intel.com, dts@dpdk.org Cc: Lijuan Tu Date: Mon, 14 Mar 2016 11:11:43 +0800 Message-Id: <1457925103-88272-1-git-send-email-lijuanx.a.tu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH v2]tests vf_vlan: update vm cases 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: Mon, 14 Mar 2016 03:16:07 -0000 1. stop forwarding and then can start again 2. for fortville ,"enable tx_vlan" must "enable rx_vlan" at same time 3. a little time wait after 'rx_vlan add %d 0' 4. fix vlan set strip on/off in for-cycle Signed-off-by: Lijuan Tu --- tests/TestSuite_vf_vlan.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_vf_vlan.py b/tests/TestSuite_vf_vlan.py index 6bde6ca..da3441c 100644 --- a/tests/TestSuite_vf_vlan.py +++ b/tests/TestSuite_vf_vlan.py @@ -243,6 +243,7 @@ class TestVfVlan(TestCase): inst = sniff_packets(self.tester_intf0, timeout=5) self.vm0_testpmd.execute_cmd('set burst 1') self.vm0_testpmd.execute_cmd('start tx_first') + self.vm0_testpmd.execute_cmd('stop') # strip sniffered vlans pkts = load_sniff_packets(inst) @@ -265,6 +266,11 @@ class TestVfVlan(TestCase): self.vm0_testpmd.execute_cmd('set verbose 1') for tx_vlan in tx_vlans: + # for fortville , + # if you want insert tx_vlan, + # please enable rx_vlan at the same time + if self.kdriver != "i40e": + self.vm0_testpmd.execute_cmd('rx_vlan add %d 0' % tx_vlan) self.vm0_testpmd.execute_cmd('tx_vlan set 0 %d' % tx_vlan) self.tx_and_check(tx_vlan=tx_vlan) @@ -280,7 +286,7 @@ class TestVfVlan(TestCase): self.vm0_testpmd.start_testpmd(VM_CORES_MASK) self.vm0_testpmd.execute_cmd('set fwd rxonly') self.vm0_testpmd.execute_cmd('set verbose 1') - self.vm0_testpmd.execute_cmd('vlan set strip off 0') + self.vm0_testpmd.execute_cmd('vlan set strip on 0') self.vm0_testpmd.execute_cmd('start') # send packet without vlan @@ -295,6 +301,7 @@ class TestVfVlan(TestCase): for rx_vlan in rx_vlans: self.vm0_testpmd.execute_cmd('rx_vlan add %d 0' % rx_vlan) + time.sleep(1) # send packet with same vlan out = self.send_and_getout(vlan=rx_vlan, pkt_type="VLAN_UDP") vlan_hex = hex(rx_vlan) @@ -312,7 +319,7 @@ class TestVfVlan(TestCase): "received 1 packets" not in out, "Received filtered vlan packet!!!") for rx_vlan in rx_vlans: - self.vm0_testpmd.execute_cmd('rx_vlan rm 0 %d' % random_vlan) + self.vm0_testpmd.execute_cmd('rx_vlan rm 0 %d' % rx_vlan) # send packet with vlan 0 out = self.send_and_getout(vlan=0, pkt_type="VLAN_UDP") @@ -341,11 +348,12 @@ class TestVfVlan(TestCase): self.vm0_testpmd.start_testpmd(VM_CORES_MASK) self.vm0_testpmd.execute_cmd('set fwd rxonly') self.vm0_testpmd.execute_cmd('set verbose 1') - self.vm0_testpmd.execute_cmd('vlan set strip on 0') self.vm0_testpmd.execute_cmd('start') for rx_vlan in rx_vlans: + self.vm0_testpmd.execute_cmd('vlan set strip on 0') self.vm0_testpmd.execute_cmd('rx_vlan add %d 0' % rx_vlan) + time.sleep(1) out = self.send_and_getout(vlan=rx_vlan, pkt_type="VLAN_UDP") # enable strip, vlan will be in mbuf vlan_hex = hex(rx_vlan) -- 1.9.3