summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-09-27 17:23:53 +0200
committerDaniel J Walsh <dwalsh@redhat.com>2018-09-27 17:23:58 +0200
commit502e387483c03ef79a1bcfe5539e03836e02ddd5 (patch)
tree3c0d1a6c61cc7ef89cc6fe948847c291084abb30 /test
parent492d6b7c3e164433a16005814091b24a03d47ad2 (diff)
downloadpodman-502e387483c03ef79a1bcfe5539e03836e02ddd5.tar.gz
podman-502e387483c03ef79a1bcfe5539e03836e02ddd5.tar.bz2
podman-502e387483c03ef79a1bcfe5539e03836e02ddd5.zip
podman runs disabled containers and privileged containers as spc_t
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/run_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go
index 5cec4f04b..4339e0f5c 100644
--- a/test/e2e/run_test.go
+++ b/test/e2e/run_test.go
@@ -81,7 +81,7 @@ var _ = Describe("Podman run", func() {
session := podmanTest.Podman([]string{"run", "-it", "--security-opt", "label=disable", ALPINE, "cat", "/proc/self/attr/current"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
- match, _ := session.GrepString("unconfined_t")
+ match, _ := session.GrepString("spc_t")
Expect(match).Should(BeTrue())
})