diff options
author | Hangbin Liu <liuhangbin@gmail.com> | 2023-08-18 10:06:13 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-20 16:25:10 +0200 |
commit | c4cf2bc0d2c97214e41b44b2b05cedc7093ccbbd (patch) | |
tree | 7e20506e66e44d9a05f28f5f90d04f349abb466b | |
parent | net: release reference to inet6_dev pointer (diff) | |
download | linux-c4cf2bc0d2c97214e41b44b2b05cedc7093ccbbd.tar.xz linux-c4cf2bc0d2c97214e41b44b2b05cedc7093ccbbd.zip |
selftests: vrf_route_leaking: remove ipv6_ping_frag from default testing
As the initial commit 1a01727676a8 ("selftests: Add VRF route leaking
tests") said, the IPv6 MTU test fails as source address selection
picking ::1. Every time we run the selftest this one report failed.
There seems not much meaning to keep reporting a failure for 3 years
that no one plan to fix/update. Let't just skip this one first. We can
add it back when the issue fixed.
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rwxr-xr-x | tools/testing/selftests/net/vrf_route_leaking.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/vrf_route_leaking.sh b/tools/testing/selftests/net/vrf_route_leaking.sh index 23cf924754a5..dedc52562b4f 100755 --- a/tools/testing/selftests/net/vrf_route_leaking.sh +++ b/tools/testing/selftests/net/vrf_route_leaking.sh @@ -565,7 +565,7 @@ EOF command -v ping6 > /dev/null 2>&1 && ping6=$(command -v ping6) || ping6=$(command -v ping) TESTS_IPV4="ipv4_ping_ttl ipv4_traceroute ipv4_ping_frag ipv4_ping_ttl_asym ipv4_traceroute_asym" -TESTS_IPV6="ipv6_ping_ttl ipv6_traceroute ipv6_ping_frag ipv6_ping_ttl_asym ipv6_traceroute_asym" +TESTS_IPV6="ipv6_ping_ttl ipv6_traceroute ipv6_ping_ttl_asym ipv6_traceroute_asym" ret=0 nsuccess=0 |