diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-27 15:07:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-27 15:07:59 +0000 |
commit | 6caf5e3b7c08cb3c5b62ed069e458910321b43b2 (patch) | |
tree | d6a369cb220c4c914bdf9707a04069664b4461c5 /test/e2e | |
parent | b29dc1bde3a9b56b813a6ab99c7fea6d7859067f (diff) | |
parent | 6b3b0a17c625bdf71b0ec8b783b288886d8e48d7 (diff) | |
download | podman-6caf5e3b7c08cb3c5b62ed069e458910321b43b2.tar.gz podman-6caf5e3b7c08cb3c5b62ed069e458910321b43b2.tar.bz2 podman-6caf5e3b7c08cb3c5b62ed069e458910321b43b2.zip |
Merge pull request #12111 from giuseppe/fix-warning-move-pause-process
runtime: check for pause pid existence
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/system_reset_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/e2e/system_reset_test.go b/test/e2e/system_reset_test.go index 102526a46..93ab166cd 100644 --- a/test/e2e/system_reset_test.go +++ b/test/e2e/system_reset_test.go @@ -60,6 +60,8 @@ var _ = Describe("podman system reset", func() { session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) + Expect(session.ErrorToString()).To(Not(ContainSubstring("Failed to add pause process"))) + // If remote then the API service should have exited // On local tests this is a noop podmanTest.StartRemoteService() |