summaryrefslogtreecommitdiff
path: root/test/podman_run_exit.bats
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-02-06 13:34:44 -0600
committerbaude <bbaude@redhat.com>2018-02-07 14:55:20 -0600
commitd26023e4a86045bdb86505992acd2b03a87a6875 (patch)
treeadc81fd84bac75e419aefb621e6e540451b6fee1 /test/podman_run_exit.bats
parent31c56e2b9ca029b7dbab15d19ad38008e2d3776c (diff)
downloadpodman-d26023e4a86045bdb86505992acd2b03a87a6875.tar.gz
podman-d26023e4a86045bdb86505992acd2b03a87a6875.tar.bz2
podman-d26023e4a86045bdb86505992acd2b03a87a6875.zip
More ginkgo migration
* attach * run_exit * save * tag * version * run_privileged -> privileged Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/podman_run_exit.bats')
-rw-r--r--test/podman_run_exit.bats46
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 ]
-}