diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-09-27 15:39:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-27 15:39:17 -0400 |
commit | e7e81e6448dc4ad1d53ef51e8175d717d18a8197 (patch) | |
tree | 3c0d1a6c61cc7ef89cc6fe948847c291084abb30 /test | |
parent | 492d6b7c3e164433a16005814091b24a03d47ad2 (diff) | |
parent | 502e387483c03ef79a1bcfe5539e03836e02ddd5 (diff) | |
download | podman-e7e81e6448dc4ad1d53ef51e8175d717d18a8197.tar.gz podman-e7e81e6448dc4ad1d53ef51e8175d717d18a8197.tar.bz2 podman-e7e81e6448dc4ad1d53ef51e8175d717d18a8197.zip |
Merge pull request #1559 from rhatdan/spc
podman runs disabled containers and privileged containers as spc_t
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_test.go | 2 |
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()) }) |