mirror of
https://github.com/containers/podman.git
synced 2025-06-20 00:51:16 +08:00
tests: disable some tests currently failing when not using runc
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
@ -41,12 +41,16 @@ var _ = Describe("Podman run exit", func() {
|
||||
})
|
||||
|
||||
It("podman run exit 126", func() {
|
||||
SkipIfNotRunc()
|
||||
|
||||
result := podmanTest.Podman([]string{"run", ALPINE, "/etc"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result.ExitCode()).To(Equal(126))
|
||||
})
|
||||
|
||||
It("podman run exit 127", func() {
|
||||
SkipIfNotRunc()
|
||||
|
||||
result := podmanTest.Podman([]string{"run", ALPINE, "foobar"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result.ExitCode()).To(Equal(127))
|
||||
|
Reference in New Issue
Block a user