diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-05-25 09:42:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 09:42:57 -0700 |
commit | 8f71881a63b5b5422efe523d10d360650ecf9c67 (patch) | |
tree | 8e8a5419ccf5c3cdbfbbf75361828509aa683622 /test/e2e/common_test.go | |
parent | d0f5796c3975dea3e26e0f50d8111d4be6d5a963 (diff) | |
parent | e6a3d6aaccecb86baf9cf3f0788bd1c8497820df (diff) | |
download | podman-8f71881a63b5b5422efe523d10d360650ecf9c67.tar.gz podman-8f71881a63b5b5422efe523d10d360650ecf9c67.tar.bz2 podman-8f71881a63b5b5422efe523d10d360650ecf9c67.zip |
Merge pull request #10456 from rhatdan/flake1
Fix race on podman start --all
Diffstat (limited to 'test/e2e/common_test.go')
-rw-r--r-- | test/e2e/common_test.go | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index 359345096..7ffee961c 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -408,7 +408,14 @@ func (p *PodmanTestIntegration) RunLsContainer(name string) (*PodmanSessionInteg podmanArgs = append(podmanArgs, "-d", ALPINE, "ls") session := p.Podman(podmanArgs) session.WaitWithDefaultTimeout() - return session, session.ExitCode(), session.OutputToString() + if session.ExitCode() != 0 { + return session, session.ExitCode(), session.OutputToString() + } + cid := session.OutputToString() + + wsession := p.Podman([]string{"wait", cid}) + wsession.WaitWithDefaultTimeout() + return session, wsession.ExitCode(), cid } // RunNginxWithHealthCheck runs the alpine nginx container with an optional name and adds a healthcheck into it @@ -431,7 +438,14 @@ func (p *PodmanTestIntegration) RunLsContainerInPod(name, pod string) (*PodmanSe podmanArgs = append(podmanArgs, "-d", ALPINE, "ls") session := p.Podman(podmanArgs) session.WaitWithDefaultTimeout() - return session, session.ExitCode(), session.OutputToString() + if session.ExitCode() != 0 { + return session, session.ExitCode(), session.OutputToString() + } + cid := session.OutputToString() + + wsession := p.Podman([]string{"wait", cid}) + wsession.WaitWithDefaultTimeout() + return session, wsession.ExitCode(), cid } // BuildImage uses podman build and buildah to build an image |