mirror of
https://github.com/containers/podman.git
synced 2025-06-23 02:18:13 +08:00
test/system/130-kill.bats: use $IMAGE
A copy-paste error led to use `alpine` instead. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
@ -133,7 +133,7 @@ load helpers
|
||||
@test "podman kill - concurrent stop" {
|
||||
# 14761 - concurrent kill/stop must record the exit code
|
||||
random_name=$(random_string 10)
|
||||
run_podman run -d --replace --name=$random_name alpine sh -c "trap 'echo Received SIGTERM, ignoring' SIGTERM; echo READY; while :; do sleep 0.2; done"
|
||||
run_podman run -d --replace --name=$random_name $IMAGE sh -c "trap 'echo Received SIGTERM, ignoring' SIGTERM; echo READY; while :; do sleep 0.2; done"
|
||||
$PODMAN stop -t 1 $random_name &
|
||||
run_podman kill $random_name
|
||||
run_podman wait $random_name
|
||||
|
Reference in New Issue
Block a user