diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-21 10:48:39 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-21 10:49:13 -0400 |
commit | f20694cc96eb335eab125dc7228a0a6dd6fe26cb (patch) | |
tree | 272bc19734d160c728a1142b1469346beba063b2 /test | |
parent | a852afab2f37026fa8a45d115c61cd77fb3e7ef1 (diff) | |
download | podman-f20694cc96eb335eab125dc7228a0a6dd6fe26cb.tar.gz podman-f20694cc96eb335eab125dc7228a0a6dd6fe26cb.tar.bz2 podman-f20694cc96eb335eab125dc7228a0a6dd6fe26cb.zip |
Get proper exit code when running or starting a container.
When we finish running a container, we need to call wait in order
to get the exit code from the container.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_exit_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/e2e/run_exit_test.go b/test/e2e/run_exit_test.go index d4b44ff23..40731142e 100644 --- a/test/e2e/run_exit_test.go +++ b/test/e2e/run_exit_test.go @@ -62,7 +62,6 @@ var _ = Describe("Podman run exit", func() { }) It("podman run exit 50", func() { - Skip(v2remotefail) result := podmanTest.Podman([]string{"run", ALPINE, "sh", "-c", "exit 50"}) result.WaitWithDefaultTimeout() Expect(result.ExitCode()).To(Equal(50)) |