summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYiqiao Pu <ypu@redhat.com>2018-11-27 16:38:41 +0800
committerYiqiao Pu <ypu@redhat.com>2018-11-27 16:38:41 +0800
commit1a217b6aa1f6a913dadb55d5a1d16cae527ebe09 (patch)
treefbdef81a1f67e9741c74265a54fbd47dbf1621fc /test
parent883f814cfb092df9eda2a98dec00f271d88ed17f (diff)
downloadpodman-1a217b6aa1f6a913dadb55d5a1d16cae527ebe09.tar.gz
podman-1a217b6aa1f6a913dadb55d5a1d16cae527ebe09.tar.bz2
podman-1a217b6aa1f6a913dadb55d5a1d16cae527ebe09.zip
Remove mount options relatime from podman run --mount with shared
In some test env, mount with shared options is not included relatime in the mountinfo file. So remove this from the test case. Signed-off-by: Yiqiao Pu <ypu@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/run_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go
index dbfdf4c74..528ec02b2 100644
--- a/test/e2e/run_test.go
+++ b/test/e2e/run_test.go
@@ -226,7 +226,6 @@ var _ = Describe("Podman run", func() {
found, matches := session.GrepString("/run/test")
Expect(found).Should(BeTrue())
Expect(matches[0]).To(ContainSubstring("rw"))
- Expect(matches[0]).To(ContainSubstring("relatime"))
Expect(matches[0]).To(ContainSubstring("shared"))
mountPath = filepath.Join(podmanTest.TempDir, "scratchpad")