Signed-off-by: Ido Schimmel idosch@mellanox.com --- recipes/switchdev/l2-008-bridge_vlan1q_sanity.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+)
diff --git a/recipes/switchdev/l2-008-bridge_vlan1q_sanity.py b/recipes/switchdev/l2-008-bridge_vlan1q_sanity.py index 5572017..555891b 100644 --- a/recipes/switchdev/l2-008-bridge_vlan1q_sanity.py +++ b/recipes/switchdev/l2-008-bridge_vlan1q_sanity.py @@ -78,6 +78,22 @@ def do_task(ctl, hosts, ifaces, aliases): sleep(1) tl.ping_simple(m1_if1, m2_if1)
+ sw_if2.add_br_vlan(500, pvid=True, untagged=False) + sleep(1) + tl.ping_simple(m1_if1, m2_if1, fail_expected=True) + + sw_if2.add_br_vlan(500, pvid=True, untagged=True) + sleep(1) + tl.ping_simple(m1_if1, m2_if1) + + sw_if2.add_br_vlan(500, pvid=False, untagged=True) + sleep(1) + tl.ping_simple(m1_if1, m2_if1, fail_expected=True) + + sw_if2.add_br_vlan(500, pvid=True, untagged=True) + sleep(1) + tl.ping_simple(m1_if1, m2_if1) + sw_br.slave_del(sw_if1.get_id())
sleep(5)
Thu, Feb 18, 2016 at 11:26:06AM CET, idosch@mellanox.com wrote:
Signed-off-by: Ido Schimmel idosch@mellanox.com
applied, thanks.
lnst-developers@lists.fedorahosted.org