[dts] [PATCH V1] tests/TestSuite_vlan_ethertype_config.py :stop port before set tx_vlan

zhu,shuai shuaix.zhu at intel.com
Thu Feb 8 09:04:08 CET 2018


diff --git a/tests/TestSuite_vlan_ethertype_config.py b/tests/TestSuite_vlan_ethertype_config.py
index 8e6dd49..1fb30fb 100644
--- a/tests/TestSuite_vlan_ethertype_config.py
+++ b/tests/TestSuite_vlan_ethertype_config.py
@@ -286,8 +286,12 @@ class TestVlanEthertypeConfig(TestCase):
             self.dut.send_expect("vlan set outer tpid 0x%x %s" %
                                  (tpid, dutTxPortId), "testpmd> ")
             for tx_vlan in tx_vlans:
+                self.dut.send_expect("stop", "testpmd>")
+                self.dut.send_expect("port stop all", "testpmd> ")
                 self.dut.send_expect(
                     "tx_vlan set %s 0x%x" % (dutTxPortId, tx_vlan), "testpmd> ")
+                self.dut.send_expect("port start all", "testpmd> ")
+                self.dut.send_expect("start", "testpmd>")
                 self.start_tcpdump(self.rxItf)
                 self.vlan_send_packet(-1)
                 out = self.get_tcpdump_packet(self.rxItf)
@@ -296,8 +300,12 @@ class TestVlanEthertypeConfig(TestCase):
                 self.verify(str("%x" % tpid) in out, "Wrong vlan:" + str(out))
                 self.verify(
                     str("%x" % tx_vlan) in out, "Vlan not found:" + str(out))
+                self.dut.send_expect("stop", "testpmd>")
+                self.dut.send_expect("port stop all", "testpmd> ")
                 self.dut.send_expect(
                     "tx_vlan reset %s" % dutTxPortId, "testpmd> ", 30)
+                self.dut.send_expect("port start all", "testpmd> ")
+                self.dut.send_expect("start", "testpmd>")
                 self.start_tcpdump(self.rxItf)
                 self.vlan_send_packet(-1)
                 out = self.get_tcpdump_packet(self.rxItf)
-- 
1.9.3



More information about the dts mailing list