diff options
author | Ed Santiago <santiago@redhat.com> | 2021-10-28 19:04:06 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-11-01 13:03:05 -0600 |
commit | 7b2531c135c52e9d60fdd0ae74c5957b2456631f (patch) | |
tree | 10a5180e82842dcb6a36e57524b02ba6434f7172 /test/system/500-networking.bats | |
parent | 85bad0cc7c68b71ab7ddb6ed09b862145c6c6d0e (diff) | |
download | podman-7b2531c135c52e9d60fdd0ae74c5957b2456631f.tar.gz podman-7b2531c135c52e9d60fdd0ae74c5957b2456631f.tar.bz2 podman-7b2531c135c52e9d60fdd0ae74c5957b2456631f.zip |
System tests: enhance volume test, add debug prints
Volume test: add a sequence of stat()s to confirm that volumes
are mounted as a different device than root.
Network test: add debugging code for #11825 (dnsmasq inotify
failure in bodhi only).
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/system/500-networking.bats')
-rw-r--r-- | test/system/500-networking.bats | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats index cb73cf24d..b3471b425 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -444,6 +444,14 @@ load helpers die "MAC address did not change after podman network disconnect/connect" fi + # FIXME FIXME FIXME: #11825: bodhi tests are failing, remote+rootless only, + # with "dnsmasq: failed to create inotify". This error has never occurred + # in CI, and Ed has been unable to reproduce it on 1minutetip. This next + # line is a suggestion from Paul Holzinger for trying to shed light on + # the system context before the failure. This output will be invisible + # if the test passes. + for foo in /proc/\*/fd/*; do readlink -f $foo; done |grep '^/proc/.*inotify' |cut -d/ -f3 | xargs -I '{}' -- ps --no-headers -o '%p %U %a' -p '{}' |uniq -c |sort -n + # connect a second network run_podman network connect $netname2 $cid |