diff options
author | baude <bbaude@redhat.com> | 2018-02-06 13:34:44 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-02-07 14:55:20 -0600 |
commit | d26023e4a86045bdb86505992acd2b03a87a6875 (patch) | |
tree | adc81fd84bac75e419aefb621e6e540451b6fee1 /test/podman_run_security.bats | |
parent | 31c56e2b9ca029b7dbab15d19ad38008e2d3776c (diff) | |
download | podman-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_security.bats')
-rw-r--r-- | test/podman_run_security.bats | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/test/podman_run_security.bats b/test/podman_run_security.bats deleted file mode 100644 index 07dabf44b..000000000 --- a/test/podman_run_security.bats +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env bats - -load helpers - -function teardown() { - cleanup_test -} - -function setup() { - copy_images -} - -@test "run privileged test" { - cap=$(grep CapEff /proc/self/status | cut -f2 -d":") - - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --privileged ${ALPINE} grep CapEff /proc/self/status - echo $output - [ "$status" -eq 0 ] - containercap=$(echo $output | tr -d '\r'| cut -f2 -d":") - [ $containercap = $cap ] - - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --cap-add all ${ALPINE} grep CapEff /proc/self/status - echo $output - [ "$status" -eq 0 ] - containercap=$(echo $output | tr -d '\r'| cut -f2 -d":") - [ $containercap = $cap ] - - cap=$(grep CapAmb /proc/self/status | cut -f2 -d":") - run ${PODMAN_BINARY} ${PODMAN_OPTIONS} run --cap-drop all ${ALPINE} grep CapEff /proc/self/status - echo $output - [ "$status" -eq 0 ] - containercap=$(echo $output | tr -d '\r'| cut -f2 -d":") - [ $containercap = $cap ] -} |