diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-01-16 16:19:06 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-01-16 16:19:06 +0100 |
commit | 49703299b1701396e7de498820484650919b631d (patch) | |
tree | c1520dc84c45214cf374eafe88d5564d9dff80cc /test | |
parent | db00ee97e950290a6bc5d669cde0cbc54bb94afe (diff) | |
download | podman-49703299b1701396e7de498820484650919b631d.tar.gz podman-49703299b1701396e7de498820484650919b631d.tar.bz2 podman-49703299b1701396e7de498820484650919b631d.zip |
e2e/run_signal_test.go: make it more robust
Make the signal test more robust by just checking that the container's
exit code is non-zero. There are two possible exit codes (i.e., 130 and
137) depending on how the container is being killed, which is likely
responsible for CI flakes.
Fixes: #4886
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_signal_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_signal_test.go b/test/e2e/run_signal_test.go index eee7c14fb..fbdd3acec 100644 --- a/test/e2e/run_signal_test.go +++ b/test/e2e/run_signal_test.go @@ -132,7 +132,7 @@ var _ = Describe("Podman run with --sig-proxy", func() { Expect(killSession.ExitCode()).To(Equal(0)) session.WaitWithDefaultTimeout() - Expect(session.ExitCode()).To(Equal(137)) + Expect(session.ExitCode()).ToNot(Equal(0)) ok, _ = session.GrepString("Received") Expect(ok).To(BeFalse()) }) |