summaryrefslogtreecommitdiff
path: root/test/e2e/run_selinux_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-03-19 08:30:05 -0700
committerGitHub <noreply@github.com>2019-03-19 08:30:05 -0700
commita1299f506d9b93824fae737f0f68a19adaf2bde1 (patch)
treeff27a306055f4eb6a1b57455cd15d3c7fe6eccf9 /test/e2e/run_selinux_test.go
parentac523cbe2b257e13c7b3b823c8de83e44052ffaf (diff)
parent4ac08d3aa1882851d4a03aa1e53c47c6fb173958 (diff)
downloadpodman-a1299f506d9b93824fae737f0f68a19adaf2bde1.tar.gz
podman-a1299f506d9b93824fae737f0f68a19adaf2bde1.tar.bz2
podman-a1299f506d9b93824fae737f0f68a19adaf2bde1.zip
Merge pull request #2704 from giuseppe/fix-some-rootless
tests: fix rootless tests
Diffstat (limited to 'test/e2e/run_selinux_test.go')
-rw-r--r--test/e2e/run_selinux_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/e2e/run_selinux_test.go b/test/e2e/run_selinux_test.go
index 282806562..4d2bad49c 100644
--- a/test/e2e/run_selinux_test.go
+++ b/test/e2e/run_selinux_test.go
@@ -112,6 +112,7 @@ var _ = Describe("Podman run", func() {
})
It("podman test selinux label /run/secrets", func() {
+ SkipIfRootless()
session := podmanTest.Podman([]string{"run", fedoraMinimal, "ls", "-dZ", "/run/secrets"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
@@ -144,6 +145,7 @@ var _ = Describe("Podman run", func() {
})
It("podman test selinux --privileged label /run/secrets", func() {
+ SkipIfRootless()
session := podmanTest.Podman([]string{"run", "--privileged", fedoraMinimal, "ls", "-dZ", "/run/secrets"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))