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/160-volumes.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/160-volumes.bats')
-rw-r--r-- | test/system/160-volumes.bats | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/system/160-volumes.bats b/test/system/160-volumes.bats index e2aefed43..3f50bd3c4 100644 --- a/test/system/160-volumes.bats +++ b/test/system/160-volumes.bats @@ -93,7 +93,6 @@ Labels.l | $mylabel is "$(<$mountpoint/myfile)" "$rand" "we see content created in container" # Clean up - if is_remote; then sleep 2;fi # FIXME: pending #7119 run_podman volume rm $myvolume } @@ -135,7 +134,6 @@ EOF is "$output" "got here -$rand-" "script in volume is runnable with default (exec)" # Clean up - if is_remote; then sleep 2;fi # FIXME: pending #7119 run_podman volume rm $myvolume } @@ -173,7 +171,6 @@ EOF run_podman run --rm -v $myvol:/myvol:z $IMAGE \ sh -c "cp /myvol/myfile /myvol/myfile2" - if is_remote; then sleep 2;fi # FIXME: pending #7119 run_podman volume rm $myvol # Autocreated volumes should also work with keep-id @@ -182,7 +179,6 @@ EOF run_podman run --rm -v $myvol:/myvol:z --userns=keep-id $IMAGE \ touch /myvol/myfile - if is_remote; then sleep 2;fi # FIXME: pending #7119 run_podman volume rm $myvol } |