diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-01 05:10:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 05:10:55 -0500 |
commit | 15e5a5c32b39fd8a62eb02fc4234c3a0d51e67f5 (patch) | |
tree | 1660c1b970b7ff1ded22f4471de166feadd56115 /test/e2e | |
parent | 4ead8067cd0fb0ee3dcf8245f81b97f8b25edc4d (diff) | |
parent | 4a6d042c282753b1c175468d23746de08b60cd53 (diff) | |
download | podman-15e5a5c32b39fd8a62eb02fc4234c3a0d51e67f5.tar.gz podman-15e5a5c32b39fd8a62eb02fc4234c3a0d51e67f5.tar.bz2 podman-15e5a5c32b39fd8a62eb02fc4234c3a0d51e67f5.zip |
Merge pull request #9151 from rhatdan/mount
Docker ignores mount flags that begin with constency
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/run_volume_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_volume_test.go b/test/e2e/run_volume_test.go index 7c74cea78..bc89b59de 100644 --- a/test/e2e/run_volume_test.go +++ b/test/e2e/run_volume_test.go @@ -110,7 +110,7 @@ var _ = Describe("Podman run with volumes", func() { Expect(session.ExitCode()).To(Equal(0)) Expect(session.OutputToString()).To(ContainSubstring(dest + " ro")) - session = podmanTest.Podman([]string{"run", "--rm", "--mount", mount + ",shared", ALPINE, "grep", dest, "/proc/self/mountinfo"}) + session = podmanTest.Podman([]string{"run", "--rm", "--mount", mount + ",consistency=delegated,shared", ALPINE, "grep", dest, "/proc/self/mountinfo"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) found, matches := session.GrepString(dest) |