diff --git a/test/system/505-networking-pasta.bats b/test/system/505-networking-pasta.bats index c55b7d3eb9..20462845b8 100644 --- a/test/system/505-networking-pasta.bats +++ b/test/system/505-networking-pasta.bats @@ -662,37 +662,6 @@ function teardown() { pasta_test_do 6 loopback udp 1 0 "port" $(($(cat /proc/sys/net/core/wmem_default) / 4)) } -### ICMP, ICMPv6 ############################################################### - -@test "podman networking with pasta(1) - ICMP echo request" { - skip_if_no_ipv4 "IPv6 not routable on the host" - - local minuid=$(cut -f1 /proc/sys/net/ipv4/ping_group_range) - local maxuid=$(cut -f2 /proc/sys/net/ipv4/ping_group_range) - - if [ $(id -u) -lt ${minuid} ] || [ $(id -u) -gt ${maxuid} ]; then - skip "ICMP echo sockets not available for this UID" - fi - - run_podman run --net=pasta $IMAGE \ - sh -c 'ping -c3 -W1 $(sed -nr "s/^nameserver[ ]{1,}([^.]*).(.*)/\1.\2/p" /etc/resolv.conf | head -1)' -} - -@test "podman networking with pasta(1) - ICMPv6 echo request" { - skip "Unsupported test, see the 'Local forwarder, IPv6' case for details" - skip_if_no_ipv6 "IPv6 not routable on the host" - - local minuid=$(cut -f1 /proc/sys/net/ipv4/ping_group_range) - local maxuid=$(cut -f2 /proc/sys/net/ipv4/ping_group_range) - - if [ $(id -u) -lt ${minuid} ] || [ $(id -u) -gt ${maxuid} ]; then - skip "ICMPv6 echo sockets not available for this UID" - fi - - run_podman run --net=pasta $IMAGE \ - sh -c 'ping -c3 -W1 $(sed -nr "s/^nameserver[ ]{1,}([^:]*):(.*)/\1:\2/p" /etc/resolv.conf | head -1)' -} - ### Lifecycle ################################################################## @test "podman networking with pasta(1) - pasta(1) quits when the namespace is gone" {