diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-19 16:42:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-19 16:42:19 +0200 |
commit | b1acc4348184d43def7c63221ee0832505c4b7d1 (patch) | |
tree | 8c04b5ce2c82ef50f45d8618ae4874d972abc285 /test/e2e/start_test.go | |
parent | 25f2b9ae984c00d339e7a80eeb487b1f00bd4f7d (diff) | |
parent | f7527fb06da688613c6ce6383664ce5eb48267eb (diff) | |
download | podman-b1acc4348184d43def7c63221ee0832505c4b7d1.tar.gz podman-b1acc4348184d43def7c63221ee0832505c4b7d1.tar.bz2 podman-b1acc4348184d43def7c63221ee0832505c4b7d1.zip |
Merge pull request #3848 from giuseppe/enable-all-tests-crun
tests: enable all tests for crun
Diffstat (limited to 'test/e2e/start_test.go')
-rw-r--r-- | test/e2e/start_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/e2e/start_test.go b/test/e2e/start_test.go index 2dbb9545b..fc1203ed1 100644 --- a/test/e2e/start_test.go +++ b/test/e2e/start_test.go @@ -101,8 +101,6 @@ var _ = Describe("Podman start", func() { }) It("podman failed to start with --rm should delete the container", func() { - SkipIfNotRunc() - session := podmanTest.Podman([]string{"create", "-it", "--rm", ALPINE, "foo"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -116,8 +114,6 @@ var _ = Describe("Podman start", func() { }) It("podman failed to start without --rm should NOT delete the container", func() { - SkipIfNotRunc() - session := podmanTest.Podman([]string{"create", "-it", ALPINE, "foo"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) |