aboutsummaryrefslogtreecommitdiff
path: root/test/system/130-kill.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-05-26 22:38:37 +0200
committerGitHub <noreply@github.com>2021-05-26 22:38:37 +0200
commit5b4ffc7ba79d0c3ad59cce17500c5a98ea686577 (patch)
tree4e01832920140ff2a5f069528a5b4b5241e93282 /test/system/130-kill.bats
parentac94be37e996fdebf44e5ace83be5219b9488ec4 (diff)
parent10569c988f8ad3bfa796e52c61d7f4ef5266c193 (diff)
downloadpodman-5b4ffc7ba79d0c3ad59cce17500c5a98ea686577.tar.gz
podman-5b4ffc7ba79d0c3ad59cce17500c5a98ea686577.tar.bz2
podman-5b4ffc7ba79d0c3ad59cce17500c5a98ea686577.zip
Merge pull request #10431 from vrothberg/journald-logs
journald logger: fix race condition
Diffstat (limited to 'test/system/130-kill.bats')
-rw-r--r--test/system/130-kill.bats3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/system/130-kill.bats b/test/system/130-kill.bats
index 1b02b4976..3770eac27 100644
--- a/test/system/130-kill.bats
+++ b/test/system/130-kill.bats
@@ -8,8 +8,7 @@ load helpers
@test "podman kill - test signal handling in containers" {
# Start a container that will handle all signals by emitting 'got: N'
local -a signals=(1 2 3 4 5 6 8 10 12 13 14 15 16 20 21 22 23 24 25 26 64)
- # Force the k8s-file driver until #10323 is fixed.
- run_podman run --log-driver=k8s-file -d $IMAGE sh -c \
+ run_podman run -d $IMAGE sh -c \
"for i in ${signals[*]}; do trap \"echo got: \$i\" \$i; done;
echo READY;
while ! test -e /stop; do sleep 0.05; done;