diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-02-07 16:49:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-07 16:49:56 -0500 |
commit | c40888cf9f35c188662e2ac52a3a3c01939deae9 (patch) | |
tree | 71395517ae287fc57b7aef24ae84a4471bc95e65 /test/podman_run_exit.bats | |
parent | 5e8fcbcd29ced34d70e78a0feb10225940238ed7 (diff) | |
parent | d26023e4a86045bdb86505992acd2b03a87a6875 (diff) | |
download | podman-c40888cf9f35c188662e2ac52a3a3c01939deae9.tar.gz podman-c40888cf9f35c188662e2ac52a3a3c01939deae9.tar.bz2 podman-c40888cf9f35c188662e2ac52a3a3c01939deae9.zip |
Merge pull request #300 from baude/ginkgo_version
More ginkgo migration
Diffstat (limited to 'test/podman_run_exit.bats')
-rw-r--r-- | test/podman_run_exit.bats | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/test/podman_run_exit.bats b/test/podman_run_exit.bats deleted file mode 100644 index 02ccb56ec..000000000 --- a/test/podman_run_exit.bats +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env bats - -load helpers - -function teardown() { - cleanup_test -} - -function setup() { - copy_images -} - -@test "run exit125 test" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --foobar ${ALPINE} ls $tmp - echo $output - echo $status != 125 - [ $status -eq 125 ] -} - -@test "run exit126 test" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run ${ALPINE} foobar - echo $output - echo $status != 126 - [ "$status" -eq 126 ] -} - -@test "run exit127 test" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run ${ALPINE} /etc - echo $output - echo $status != 127 - [ "$status" -eq 127 ] -} - -@test "run exit0 test" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run ${ALPINE} ps - echo $output - echo $status != 0 - [ "$status" -eq 0 ] -} - -@test "run exit50 test" { - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run ${ALPINE} sh -c "exit 50" - echo $output - echo $status != 50 - [ "$status" -eq 50 ] -} |