diff options
author | Ed Santiago <santiago@redhat.com> | 2021-04-27 14:45:59 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-04-27 15:10:18 -0600 |
commit | c11e9b01b3647ff753b9d81a4598872c4aef5643 (patch) | |
tree | 8afc1f291e1b1bab5748e007828a2ddc0e55cae1 /test/system/500-networking.bats | |
parent | ba9c1f3f17a4f0086d9ac25fe0f211b3c75e514a (diff) | |
download | podman-c11e9b01b3647ff753b9d81a4598872c4aef5643.tar.gz podman-c11e9b01b3647ff753b9d81a4598872c4aef5643.tar.bz2 podman-c11e9b01b3647ff753b9d81a4598872c4aef5643.zip |
System tests: fix two race conditions
Basically, add 'podman wait' before 'podman rm'. See if this
fixes gating tests run on ppc64le (possibly very very slow hosts)
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/system/500-networking.bats')
-rw-r--r-- | test/system/500-networking.bats | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats index 21240e521..9f8791e5d 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -116,6 +116,7 @@ load helpers is "$output" ".*${teststring}.*" "test string received on container" # Clean up + run_podman wait $cid run_podman rm $cid done } |