diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-20 01:45:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 01:45:00 +0200 |
commit | 4eee0d840f0af81560d89864ea64b95c9e70b18d (patch) | |
tree | 684b0400d186ef9f6c20314a951f10ecec185bae /test/e2e/start_test.go | |
parent | 0f8ad039235137d086b9fea33bb74b362e625cdd (diff) | |
parent | 8ec08a426e7024d597281dc0af9168f340e10d5d (diff) | |
download | podman-4eee0d840f0af81560d89864ea64b95c9e70b18d.tar.gz podman-4eee0d840f0af81560d89864ea64b95c9e70b18d.tar.bz2 podman-4eee0d840f0af81560d89864ea64b95c9e70b18d.zip |
Merge pull request #6177 from baude/v2enableremote
v2 enable remote integration tests
Diffstat (limited to 'test/e2e/start_test.go')
-rw-r--r-- | test/e2e/start_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/start_test.go b/test/e2e/start_test.go index 6af0b7068..a7a9e7fdb 100644 --- a/test/e2e/start_test.go +++ b/test/e2e/start_test.go @@ -40,6 +40,7 @@ var _ = Describe("Podman start", func() { }) It("podman start single container by id", func() { + Skip(v2remotefail) session := podmanTest.Podman([]string{"create", "-d", ALPINE, "ls"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -50,6 +51,7 @@ var _ = Describe("Podman start", func() { }) It("podman container start single container by id", func() { + Skip(v2remotefail) session := podmanTest.Podman([]string{"container", "create", "-d", ALPINE, "ls"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -61,6 +63,7 @@ var _ = Describe("Podman start", func() { }) It("podman container start single container by short id", func() { + Skip(v2remotefail) session := podmanTest.Podman([]string{"container", "create", "-d", ALPINE, "ls"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -120,6 +123,7 @@ var _ = Describe("Podman start", func() { }) It("podman failed to start with --rm should delete the container", func() { + SkipIfRemote() session := podmanTest.Podman([]string{"create", "-it", "--rm", ALPINE, "foo"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -132,6 +136,7 @@ var _ = Describe("Podman start", func() { }) It("podman failed to start without --rm should NOT delete the container", func() { + SkipIfRemote() session := podmanTest.Podman([]string{"create", "-it", ALPINE, "foo"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) |