diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-11-06 17:05:40 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-11-07 13:33:07 +0000 |
commit | a39ec628e729c7dde6b1972fdfe1e6acc4851182 (patch) | |
tree | 08cd8c4338ec216c536639bc586823cf042b5fe0 /test | |
parent | 006a8bd6f341358bd2917c69466fb5968de78d99 (diff) | |
download | podman-a39ec628e729c7dde6b1972fdfe1e6acc4851182.tar.gz podman-a39ec628e729c7dde6b1972fdfe1e6acc4851182.tar.bz2 podman-a39ec628e729c7dde6b1972fdfe1e6acc4851182.zip |
SELinux tests are mistakenly not running.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #22
Approved by: rhatdan
Diffstat (limited to 'test')
-rw-r--r-- | test/kpod_run.bats | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/kpod_run.bats b/test/kpod_run.bats index 20b3a2dfe..7a09ac1f2 100644 --- a/test/kpod_run.bats +++ b/test/kpod_run.bats @@ -21,7 +21,7 @@ ALPINE="docker.io/library/alpine:latest" @test "run selinux test" { - if [ ! -e /usr/sbin/selinuxenabled ] || /usr/sbin/selinuxenabled; then + if [ ! -e /usr/sbin/selinuxenabled ] || [ ! /usr/sbin/selinuxenabled ]; then skip "SELinux not enabled" fi @@ -31,13 +31,13 @@ ALPINE="docker.io/library/alpine:latest" [ "$status" -eq 0 ] [ "$output" != "${firstLabel}" ] - run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} run --security-opt label:level=s0:c1,c2 ${ALPINE} cat /proc/self/attr/current | grep s0:c1,c2" + run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} run -t -i --security-opt label=level:s0:c1,c2 ${ALPINE} cat /proc/self/attr/current | grep s0:c1,c2" echo "$output" [ "$status" -eq 0 ] } -@test "run selinux test" { +@test "run capabilities test" { run ${KPOD_BINARY} ${KPOD_OPTIONS} run --cap-add all ${ALPINE} cat /proc/self/status echo "$output" |