summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-10-31 15:28:52 +0100
committerGitHub <noreply@github.com>2019-10-31 15:28:52 +0100
commit1b3e79dfef946de8dfac6a81ad5fb6e4333ce8f8 (patch)
tree93c38193539dcfceca3eb6ac18ec6c16d5d42588
parent381fa4df875af3d2acee34d4fc1a608b2218b551 (diff)
parent0eea8fbc468e4fbad3a7b46cf030518a3e7d3cca (diff)
downloadpodman-1b3e79dfef946de8dfac6a81ad5fb6e4333ce8f8.tar.gz
podman-1b3e79dfef946de8dfac6a81ad5fb6e4333ce8f8.tar.bz2
podman-1b3e79dfef946de8dfac6a81ad5fb6e4333ce8f8.zip
Merge pull request #4395 from rhatdan/exec
Fix selinux test for exec
-rw-r--r--test/e2e/run_selinux_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_selinux_test.go b/test/e2e/run_selinux_test.go
index ebc36b7f1..358137aa9 100644
--- a/test/e2e/run_selinux_test.go
+++ b/test/e2e/run_selinux_test.go
@@ -170,7 +170,7 @@ var _ = Describe("Podman run", func() {
setup.WaitWithDefaultTimeout()
Expect(setup.ExitCode()).To(Equal(0))
- session := podmanTest.Podman([]string{"exec", "test1", "cat", "/proc/self/attr/current"})
+ session := podmanTest.Podman([]string{"exec", "test1", "cat", "/proc/1/attr/current"})
session.WaitWithDefaultTimeout()
session1 := podmanTest.Podman([]string{"exec", "test1", "cat", "/proc/self/attr/current"})
session1.WaitWithDefaultTimeout()