diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2021-08-16 12:47:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 12:47:13 +0000 |
commit | 9ee9d4a0722b2a31d95066a4e3ce756a8b4d15ac (patch) | |
tree | e0b08243f37d909daf1d6f02b321f8d9ee97b7ee /test | |
parent | a38d7530dbe7d39cb76c16b2b44f96f870223fca (diff) | |
parent | 2a8c4144887373dd8c070ac09f33fea7ab764a95 (diff) | |
download | podman-9ee9d4a0722b2a31d95066a4e3ce756a8b4d15ac.tar.gz podman-9ee9d4a0722b2a31d95066a4e3ce756a8b4d15ac.tar.bz2 podman-9ee9d4a0722b2a31d95066a4e3ce756a8b4d15ac.zip |
Merge pull request #11230 from Luap99/rootless-dns
Fix rootless cni dns without systemd stub resolver
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 |