diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-12 19:14:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-12 19:14:20 +0200 |
commit | ca7bae7f89bd1843ce47fca41403b99b8583168e (patch) | |
tree | 496d55497fbb3151ad54b8c1a3bbfa4408a9775d /test/e2e/start_test.go | |
parent | 341f0bf66485c75db95f9e6355af1fb2f93f6005 (diff) | |
parent | 9f67cde9f855081cf113afefb72b8f38c1b4d338 (diff) | |
download | podman-ca7bae7f89bd1843ce47fca41403b99b8583168e.tar.gz podman-ca7bae7f89bd1843ce47fca41403b99b8583168e.tar.bz2 podman-ca7bae7f89bd1843ce47fca41403b99b8583168e.zip |
Merge pull request #3789 from giuseppe/cirrus-add-crun
cirrus: run tests with crun
Diffstat (limited to 'test/e2e/start_test.go')
-rw-r--r-- | test/e2e/start_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/e2e/start_test.go b/test/e2e/start_test.go index fc1203ed1..2dbb9545b 100644 --- a/test/e2e/start_test.go +++ b/test/e2e/start_test.go @@ -101,6 +101,8 @@ 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)) @@ -114,6 +116,8 @@ 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)) |