diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-09-23 09:11:16 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-09-23 14:50:22 -0400 |
commit | 8863e0f00503c1930e74376658abc7632555d1e2 (patch) | |
tree | 44cd83c170162e4fd6e8925ee5e66a04f3d27560 /test/e2e/healthcheck_run_test.go | |
parent | 81c543bbe3cd5130b5a2f163011d59d8b09f6877 (diff) | |
download | podman-8863e0f00503c1930e74376658abc7632555d1e2.tar.gz podman-8863e0f00503c1930e74376658abc7632555d1e2.tar.bz2 podman-8863e0f00503c1930e74376658abc7632555d1e2.zip |
Remove final v2remotefail failures
Most have been fixed, others I replaced with SkipIfRemote
Fix ContainerStart on tunnel, it needs to wait for the exit status
before returning.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/healthcheck_run_test.go')
-rw-r--r-- | test/e2e/healthcheck_run_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/e2e/healthcheck_run_test.go b/test/e2e/healthcheck_run_test.go index c020860ea..71e73af9c 100644 --- a/test/e2e/healthcheck_run_test.go +++ b/test/e2e/healthcheck_run_test.go @@ -174,7 +174,6 @@ var _ = Describe("Podman healthcheck run", func() { }) It("podman healthcheck single healthy result changes failed to healthy", func() { - Skip(v2remotefail) session := podmanTest.Podman([]string{"run", "-dt", "--name", "hc", "--health-retries", "2", "--health-cmd", "ls /foo || exit 1", ALPINE, "top"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) |