diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-08-19 14:01:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 14:01:48 -0400 |
commit | 651fbacc35b8fcd2b170357548c1f6272ae2c48b (patch) | |
tree | 167124e3eee310636bc04027d42bfb6db5d4f2b7 /test | |
parent | 55553bccdc7471b37ea8fc0398f637278695a896 (diff) | |
parent | 15fff7d918a782875ab130a6d96665aedc0ba967 (diff) | |
download | podman-651fbacc35b8fcd2b170357548c1f6272ae2c48b.tar.gz podman-651fbacc35b8fcd2b170357548c1f6272ae2c48b.tar.bz2 podman-651fbacc35b8fcd2b170357548c1f6272ae2c48b.zip |
Merge pull request #11281 from Luap99/3.3-back
[v3.3] backport rootless networking fixes
Diffstat (limited to 'test')
-rw-r--r-- | test/system/500-networking.bats | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats index 6ffee7eaf..3ebe45e63 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -210,6 +210,9 @@ load helpers $IMAGE nc -l -n -v -p $myport cid="$output" + # check that dns is working inside the container + run_podman exec $cid nslookup google.com + # emit random string, and check it teststring=$(random_string 30) echo "$teststring" | nc 127.0.0.1 $myport |