Fixes: 9ac548524218 ("pinctrl: Send RARPs for external ipv6 interfaces")Signed-off-by: Xavier Simonart <[email protected]> --- tests/ovn.at | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/ovn.at b/tests/ovn.at index 6552681bd..3131b8d02 100644 --- a/tests/ovn.at +++ b/tests/ovn.at @@ -13954,8 +13954,9 @@ AT_CHECK([cat 2.packets | cut -c 117-], [0], [expout]) # Check that NS packets are not flooded across routing domains. That means # that hv2 should not send any packets across the physical network. +# Use the grep here to filter out rarp packets that might have arrived $PYTHON "$ovs_srcdir/utilities/ovs-pcap.in" hv2/br-phys_n1-tx.pcap | \ -trim_zeros > 2.packets +grep -v ffffffffffff | trim_zeros > 2.packets AT_CHECK([cat 2.packets], [0], []) # Now send a packet with destination ip other than @@ -13995,8 +13996,9 @@ AT_CHECK([cat 2.packets | cut -c 117-], [0], [expout]) # Check that NS packets are not flooded across routing domains. That means # that hv2 should not send any packets across the physical network. +# Use the grep here to filter out rarp packets that might have arrived $PYTHON "$ovs_srcdir/utilities/ovs-pcap.in" hv2/br-phys_n1-tx.pcap | \ -trim_zeros > 2.packets +grep -v ffffffffffff | trim_zeros > 2.packets AT_CHECK([cat 2.packets], [0], []) OVN_CLEANUP([hv1]) -- 2.31.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
