aboutsummaryrefslogtreecommitdiff
path: root/test/podman_run_ns.bats
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-02-07 16:49:56 -0500
committerGitHub <noreply@github.com>2018-02-07 16:49:56 -0500
commitc40888cf9f35c188662e2ac52a3a3c01939deae9 (patch)
tree71395517ae287fc57b7aef24ae84a4471bc95e65 /test/podman_run_ns.bats
parent5e8fcbcd29ced34d70e78a0feb10225940238ed7 (diff)
parentd26023e4a86045bdb86505992acd2b03a87a6875 (diff)
downloadpodman-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_ns.bats')
-rw-r--r--test/podman_run_ns.bats44
1 files changed, 0 insertions, 44 deletions
diff --git a/test/podman_run_ns.bats b/test/podman_run_ns.bats
deleted file mode 100644
index 8ed710394..000000000
--- a/test/podman_run_ns.bats
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/env bats
-
-load helpers
-
-function teardown() {
- cleanup_test
-}
-
-function setup() {
- copy_images
-}
-
-@test "run pidns test" {
- run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run ${ALPINE} sh -c 'echo \$\$'"
- echo $output
- [ "$status" -eq 0 ]
- pid=$(echo $output | tr -d '\r')
- [ $pid = "1" ]
-
- run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run --pid=host ${ALPINE} sh -c 'echo \$\$'"
- echo $output
- pid=$(echo $output | tr -d '\r')
- [ "$status" -eq 0 ]
- [ $pid != "1" ]
-
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --pid=badpid ${ALPINE} sh -c 'echo $$'
- echo $output
- [ "$status" -ne 0 ]
-}
-
-@test "run ipcns test" {
- tmp=$(mktemp /dev/shm/foo.XXXXX)
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --ipc=host ${ALPINE} ls $tmp
- echo $output
- out=$(echo $output | tr -d '\r')
- [ "$status" -eq 0 ]
- [ $out != $tmp ]
-
- rm -f $tmp
-
- run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --ipc=badpid ${ALPINE} sh -c 'echo $$'
- echo $output
- [ "$status" -ne 0 ]
-}