summaryrefslogtreecommitdiff
path: root/tests/openpgp-auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/openpgp-auth.c')
-rw-r--r--tests/openpgp-auth.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/openpgp-auth.c b/tests/openpgp-auth.c
index bc79c223f2..1836f0777c 100644
--- a/tests/openpgp-auth.c
+++ b/tests/openpgp-auth.c
@@ -350,14 +350,7 @@ void doit(void)
if (done != child)
fail("who's that?! %d\n", done);
- if (WIFEXITED(status)) {
- if (WEXITSTATUS(status) != 0)
- fail("child exited with status %d\n", WEXITSTATUS(status));
- } else if (WIFSIGNALED(status))
- fail("child stopped by signal %d\n",
- WTERMSIG(status));
- else
- fail("child failed: %d\n", status);
+ check_wait_status(status);
}
}