diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/podman_pause.bats | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/podman_pause.bats b/test/podman_pause.bats index 49db0c2aa..b8f0a8746 100644 --- a/test/podman_pause.bats +++ b/test/podman_pause.bats @@ -101,6 +101,11 @@ function teardown() { run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} ps -a --filter id=$ctr_id" echo "$output" [ "$status" -eq 0 ] + # Container should be running after unpause and shouldn't + # be removable without the force flag. + run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} rm $ctr_id" + echo "$output" + [ "$status" -eq 125 ] run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} rm -f $ctr_id" echo "$output" [ "$status" -eq 0 ] |