summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Rothberg <vrothberg@redhat.com>2022-07-08 13:53:27 +0200
committerValentin Rothberg <vrothberg@redhat.com>2022-07-11 10:31:52 +0200
commitb41e42f42b59ea3b3b91a97bf89d7898d32e0861 (patch)
treebd0fdac6f0163a5d99120d576bd3eb136909aaf2
parent76422ecdbbd26bf645b664ea7663e5ecf10139ba (diff)
downloadpodman-b41e42f42b59ea3b3b91a97bf89d7898d32e0861.tar.gz
podman-b41e42f42b59ea3b3b91a97bf89d7898d32e0861.tar.bz2
podman-b41e42f42b59ea3b3b91a97bf89d7898d32e0861.zip
test/system/130-kill.bats: use $IMAGE
A copy-paste error led to use `alpine` instead. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
-rw-r--r--test/system/130-kill.bats2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/130-kill.bats b/test/system/130-kill.bats
index 96b633a42..3d800936a 100644
--- a/test/system/130-kill.bats
+++ b/test/system/130-kill.bats
@@ -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