mirror of
https://github.com/containers/podman.git
synced 2025-12-02 11:08:36 +08:00
wait: add --ignore option
In the recent past, I met the frequent need to wait for a container to exist that, at the same time, may get removed (e.g., system tests in [1]). Add an `--ignore` option to podman-wait which will ignore errors when a specified container is missing and mark its exit code as -1. Also remove ID fields from the WaitReport. It is actually not used by callers and removing it makes the code simpler and faster. Once merged, we can go over the tests and simplify them. [1] github.com/containers/podman/pull/16852 Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
@@ -20,6 +20,15 @@ load helpers
|
||||
run_podman rm $rand
|
||||
is "$output" "$rand" "display raw input"
|
||||
run_podman 125 inspect $rand
|
||||
run_podman 125 wait $rand
|
||||
run_podman wait --ignore $rand
|
||||
is "$output" "-1" "wait --ignore will mark missing containers with -1"
|
||||
|
||||
if !is_remote; then
|
||||
# remote does not support the --latest flag
|
||||
run_podman wait --ignore --latest
|
||||
is "$output" "-1" "wait --ignore will mark missing containers with -1"
|
||||
fi
|
||||
}
|
||||
|
||||
@test "podman rm - running container, w/o and w/ force" {
|
||||
|
||||
Reference in New Issue
Block a user