diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-08-12 16:09:34 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-08-12 16:09:34 +0200 |
commit | 9f67cde9f855081cf113afefb72b8f38c1b4d338 (patch) | |
tree | 4e69e4b966772d09c9b136550fc68b83ed5fed1c /test/e2e/exec_test.go | |
parent | efa26eedee2876c521cef61f048d8c8e13022cf2 (diff) | |
download | podman-9f67cde9f855081cf113afefb72b8f38c1b4d338.tar.gz podman-9f67cde9f855081cf113afefb72b8f38c1b4d338.tar.bz2 podman-9f67cde9f855081cf113afefb72b8f38c1b4d338.zip |
tests: disable some tests currently failing when not using runc
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test/e2e/exec_test.go')
-rw-r--r-- | test/e2e/exec_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/e2e/exec_test.go b/test/e2e/exec_test.go index 6cf78a25c..3f9639fda 100644 --- a/test/e2e/exec_test.go +++ b/test/e2e/exec_test.go @@ -179,6 +179,8 @@ var _ = Describe("Podman exec", func() { }) It("podman exec cannot be invoked", func() { + SkipIfNotRunc() + setup := podmanTest.RunTopContainer("test1") setup.WaitWithDefaultTimeout() Expect(setup.ExitCode()).To(Equal(0)) @@ -189,6 +191,8 @@ var _ = Describe("Podman exec", func() { }) It("podman exec command not found", func() { + SkipIfNotRunc() + setup := podmanTest.RunTopContainer("test1") setup.WaitWithDefaultTimeout() Expect(setup.ExitCode()).To(Equal(0)) |