summaryrefslogtreecommitdiff
path: root/test/system/500-networking.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-02-03 15:37:19 -0500
committerGitHub <noreply@github.com>2022-02-03 15:37:19 -0500
commit608b6142edb7a4e179ce6d2ae69707be28f29359 (patch)
tree1ea61cd58e852d849fc5941c0827e6f1ad34727f /test/system/500-networking.bats
parente1ed5a9d9c8181075011634191cde183d07ae99a (diff)
parent642a691cbba407edbbcdfb287a47224bad779ec4 (diff)
downloadpodman-608b6142edb7a4e179ce6d2ae69707be28f29359.tar.gz
podman-608b6142edb7a4e179ce6d2ae69707be28f29359.tar.bz2
podman-608b6142edb7a4e179ce6d2ae69707be28f29359.zip
Merge pull request #13024 from cevich/netavark_system
Cirrus: Add netavark/aardvark system test task
Diffstat (limited to 'test/system/500-networking.bats')
-rw-r--r--test/system/500-networking.bats10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats
index 9f70c1c6c..9b39ebf97 100644
--- a/test/system/500-networking.bats
+++ b/test/system/500-networking.bats
@@ -256,13 +256,17 @@ load helpers
# rootless cannot modify iptables
if ! is_rootless; then
- # flush the CNI iptables here
- run iptables -t nat -F CNI-HOSTPORT-DNAT
+ # flush the port forwarding iptable rule here
+ chain="CNI-HOSTPORT-DNAT"
+ if is_netavark; then
+ chain="NETAVARK-HOSTPORT-DNAT"
+ fi
+ run iptables -t nat -F "$chain"
# check that we cannot curl (timeout after 5 sec)
run timeout 5 curl -s $SERVER/index.txt
if [ "$status" -ne 124 ]; then
- die "curl did not timeout, status code: $status"
+ die "curl did not timeout, status code: $status"
fi
fi