diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-05 04:14:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-05 04:14:22 +0200 |
commit | 6260677012080aa6aa52ead7ec54261d8d6017a0 (patch) | |
tree | 91c2b997d41f36a67e9bce944bead5916b58da56 /test/system/200-pod.bats | |
parent | 0a3f3c94f86a2539d4a0f98a782702b3809b3006 (diff) | |
parent | a0fb08100391f27c283e0bf62e5663222066b6bf (diff) | |
download | podman-6260677012080aa6aa52ead7ec54261d8d6017a0.tar.gz podman-6260677012080aa6aa52ead7ec54261d8d6017a0.tar.bz2 podman-6260677012080aa6aa52ead7ec54261d8d6017a0.zip |
Merge pull request #7224 from rhatdan/remove
Handle podman-remote run --rm
Diffstat (limited to 'test/system/200-pod.bats')
-rw-r--r-- | test/system/200-pod.bats | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/system/200-pod.bats b/test/system/200-pod.bats index cbfd7fe03..f3ec8a67c 100644 --- a/test/system/200-pod.bats +++ b/test/system/200-pod.bats @@ -93,7 +93,6 @@ function teardown() { is "$output" "$message" "message sent from one container to another" # Clean up. First the nc -l container... - if is_remote; then sleep 2;fi # FIXME: pending #7119 run_podman rm $cid1 # ...then, from pause container, find the image ID of the pause image... @@ -104,7 +103,6 @@ function teardown() { pause_iid="$output" # ...then rm the pod, then rmi the pause image so we don't leave strays. - if is_remote; then sleep 2;fi # FIXME: pending #7119 run_podman pod rm $podname run_podman rmi $pause_iid @@ -215,7 +213,6 @@ function random_ip() { is "$output" ".*options $dns_opt" "--dns-opt was added" # pod inspect - if is_remote; then sleep 2;fi # FIXME: pending #7119 run_podman pod inspect --format '{{.Name}}: {{.ID}} : {{.NumContainers}} : {{.Labels}}' mypod is "$output" "mypod: $pod_id : 1 : map\[${labelname}:${labelvalue}]" \ "pod inspect --format ..." |