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

Liu, Yong yong.liu at intel.com
Sun Feb 11 11:25:08 CET 2018


Thanks, Shuai. Applied.

On 02/08/2018 04:04 PM, zhu,shuai wrote:
> 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)



More information about the dts mailing list