summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-06-16 11:10:30 -0400
committerGitHub <noreply@github.com>2021-06-16 11:10:30 -0400
commitb3f61ec38cda171caf8e8624a9ec875ba85bc20d (patch)
tree404172d5605e9e5af93ca99207756cc876ace074 /test
parent85bf412bb5843adba526ac264dd4d07a51c8a422 (diff)
parent404d5edb1557e3d2cb255d38bd89274586c4c100 (diff)
downloadpodman-b3f61ec38cda171caf8e8624a9ec875ba85bc20d.tar.gz
podman-b3f61ec38cda171caf8e8624a9ec875ba85bc20d.tar.bz2
podman-b3f61ec38cda171caf8e8624a9ec875ba85bc20d.zip
Merge pull request #10451 from giuseppe/test-ENOSYS
tests: update CI images
Diffstat (limited to 'test')
-rw-r--r--test/e2e/run_test.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go
index cae1b5aad..e71e7a248 100644
--- a/test/e2e/run_test.go
+++ b/test/e2e/run_test.go
@@ -933,17 +933,6 @@ USER mail`, BB)
Expect(session.OutputToString()).To(ContainSubstring("mail root"))
})
- It("podman run with incorect VOLUME", func() {
- dockerfile := fmt.Sprintf(`FROM %s
-VOLUME ['/etc/foo']
-WORKDIR /etc/foo`, BB)
- podmanTest.BuildImage(dockerfile, "test", "false")
- session := podmanTest.Podman([]string{"run", "--rm", "test", "echo", "test"})
- session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Equal(0))
- Expect(session.OutputToString()).To(ContainSubstring("test"))
- })
-
It("podman run --volumes-from flag", func() {
vol := filepath.Join(podmanTest.TempDir, "vol-test")
err := os.MkdirAll(vol, 0755)