diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-08-04 16:24:34 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-08-04 20:26:34 -0400 |
commit | a0fb08100391f27c283e0bf62e5663222066b6bf (patch) | |
tree | 5328e9af0b2ea16e7b3529d37597a88352729958 /test/system/300-cli-parsing.bats | |
parent | 807efd669802f00a90339bfa43a508505bec4858 (diff) | |
download | podman-a0fb08100391f27c283e0bf62e5663222066b6bf.tar.gz podman-a0fb08100391f27c283e0bf62e5663222066b6bf.tar.bz2 podman-a0fb08100391f27c283e0bf62e5663222066b6bf.zip |
Handle podman-remote run --rm
We need to remove the container after it has exited for
podman-remote run --rm commands. If we don't remove this
container at this step, we open ourselves up to race conditions.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/system/300-cli-parsing.bats')
-rw-r--r-- | test/system/300-cli-parsing.bats | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/system/300-cli-parsing.bats b/test/system/300-cli-parsing.bats index 2abc01bb7..92c073102 100644 --- a/test/system/300-cli-parsing.bats +++ b/test/system/300-cli-parsing.bats @@ -10,8 +10,6 @@ load helpers # Error: invalid argument "true=\"false\"" for "-l, --label" \ # flag: parse error on line 1, column 5: bare " in non-quoted-field run_podman run --rm --label 'true="false"' $IMAGE true - - if is_remote; then sleep 2;fi # FIXME: pending #7119 } # vim: filetype=sh |