diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-05-08 13:04:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 13:04:59 +0200 |
commit | ff1c59065e9d2ef0c03ce8de444b489630d00b3c (patch) | |
tree | 3923827125e9f097a384df5196831014fc68d9a1 /test | |
parent | 241d78351e1efaf1cc4bb1e0f33741c1b585d7c4 (diff) | |
parent | 676efd89d5ff4eb8f473fbd994809cc263cf504a (diff) | |
download | podman-ff1c59065e9d2ef0c03ce8de444b489630d00b3c.tar.gz podman-ff1c59065e9d2ef0c03ce8de444b489630d00b3c.tar.bz2 podman-ff1c59065e9d2ef0c03ce8de444b489630d00b3c.zip |
Merge pull request #6130 from vrothberg/pidfile
set --conmon-pidfile
Diffstat (limited to 'test')
-rw-r--r-- | test/system/030-run.bats | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index 56e9fed3b..d5d5121f8 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -158,4 +158,20 @@ echo $rand | 0 | $rand run_podman 1 image exists $NONLOCAL_IMAGE } +# 'run --conmon-pidfile --cid-file' makes sure we don't regress on these flags. +# Both are critical for systemd units. +@test "podman run --conmon-pidfile --cidfile" { + pid=$(mktemp) + cid=$(mktemp) + + # CID file exists -> expected to fail. + run_podman 125 run --rm --conmon-pidfile=$pid --cidfile=$cid $IMAGE ls + + rm $pid $cid + run_podman run --name keepme --conmon-pidfile=$pid --cidfile=$cid --detach $IMAGE sleep infinity + stat $pid $cid + run_podman rm -f keepme + rm $pid $cid +} + # vim: filetype=sh |