diff options
author | Ed Santiago <santiago@redhat.com> | 2021-11-08 13:44:03 -0700 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-11-12 11:08:25 -0500 |
commit | fc1707dfe4288d0eb465a13f4dc025f779d829c5 (patch) | |
tree | 3790e8d8b1b0f2ccfd52c66addd3db256a675521 /test | |
parent | c8b7ca2ba2ef9a57103b5c05e6e29b54b0c6fa48 (diff) | |
download | podman-fc1707dfe4288d0eb465a13f4dc025f779d829c5.tar.gz podman-fc1707dfe4288d0eb465a13f4dc025f779d829c5.tar.bz2 podman-fc1707dfe4288d0eb465a13f4dc025f779d829c5.zip |
Minor test tweaks
- remove 'NO TESTS NEEDED' as a valid bypass string. Henceforth
only 'NO NEW TESTS NEEDED' will work.
- add a debugging aid for #11871, in which bodhi tests time out
in nslookup.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/system/500-networking.bats | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats index fc1a7c9f0..3263f3c82 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -167,6 +167,13 @@ load helpers $IMAGE nc -l -n -v -p $myport cid="$output" + # FIXME: debugging for #11871 + run_podman exec $cid cat /etc/resolv.conf + if is_rootless; then + run_podman unshare --rootless-cni cat /etc/resolv.conf + fi + ps uxww + # check that dns is working inside the container run_podman exec $cid nslookup google.com |