e2e: fix pprof flakes

Give the services some more time after SIGINT to shutdown.
`Eventually(session, 5)` will poll the session for the specific
condition at a frequency of 10ms for at most 5 seconds.

Fixes: #12167
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2021-12-06 14:25:04 +01:00
parent 188f1989fa
commit 6d7e6d7447

View File

@ -45,8 +45,6 @@ var _ = Describe("podman system service", func() {
defer session.Kill() defer session.Kill()
WaitForService(address) WaitForService(address)
session.Wait(5 * time.Second)
Eventually(session, 5).Should(Exit(0)) Eventually(session, 5).Should(Exit(0))
}) })
}) })
@ -91,7 +89,7 @@ var _ = Describe("podman system service", func() {
Expect(body).ShouldNot(BeEmpty()) Expect(body).ShouldNot(BeEmpty())
session.Interrupt().Wait(2 * time.Second) session.Interrupt().Wait(2 * time.Second)
Eventually(session).Should(Exit(1)) Eventually(session, 5).Should(Exit(1))
}) })
It("are not available", func() { It("are not available", func() {
@ -113,7 +111,7 @@ var _ = Describe("podman system service", func() {
Expect(session.Err.Contents()).ShouldNot(ContainSubstring(magicComment)) Expect(session.Err.Contents()).ShouldNot(ContainSubstring(magicComment))
session.Interrupt().Wait(2 * time.Second) session.Interrupt().Wait(2 * time.Second)
Eventually(session).Should(Exit(1)) Eventually(session, 5).Should(Exit(1))
}) })
}) })
}) })