diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-01-04 08:53:46 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-04 21:05:10 +0000 |
commit | b231e3412e7d37d9680229e3782e28161792c7f8 (patch) | |
tree | da0d214d45bbb13b3254dfe450b73ddc24e44351 /test/podman_pause.bats | |
parent | 137e5c8ffd5e1d7abe47398d909c9611f19bfcbb (diff) | |
download | podman-b231e3412e7d37d9680229e3782e28161792c7f8.tar.gz podman-b231e3412e7d37d9680229e3782e28161792c7f8.tar.bz2 podman-b231e3412e7d37d9680229e3782e28161792c7f8.zip |
Fix handling of exit codes
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #183
Approved by: TomSweeneyRedHat
Diffstat (limited to 'test/podman_pause.bats')
-rw-r--r-- | test/podman_pause.bats | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/podman_pause.bats b/test/podman_pause.bats index 52add0397..49db0c2aa 100644 --- a/test/podman_pause.bats +++ b/test/podman_pause.bats @@ -13,13 +13,13 @@ function teardown() { @test "pause a bogus container" { run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} pause foobar" echo "$output" - [ "$status" -eq 1 ] + [ "$status" -eq 125 ] } @test "unpause a bogus container" { run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} unpause foobar" echo "$output" - [ "$status" -eq 1 ] + [ "$status" -eq 125 ] } @test "pause a created container by id" { @@ -61,7 +61,7 @@ function teardown() { ctr_id=`echo "$output" | tail -n 1` run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} unpause $ctr_id" echo "$output" - [ "$status" -eq 1 ] + [ "$status" -eq 125 ] run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} rm -f $ctr_id" echo "$output" [ "$status" -eq 0 ] @@ -78,7 +78,7 @@ function teardown() { [ "$status" -eq 0 ] run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} rm $ctr_id" echo "$output" - [ "$status" -eq 1 ] + [ "$status" -eq 125 ] run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} rm --force $ctr_id" echo "$output" [ "$status" -eq 0 ] @@ -94,7 +94,7 @@ function teardown() { [ "$status" -eq 0 ] run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} stop $ctr_id" echo "$output" - [ "$status" -eq 1 ] + [ "$status" -eq 125 ] run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} unpause $ctr_id" echo "$output" [ "$status" -eq 0 ] |