diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-08-08 11:49:04 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-08-08 12:16:58 +0200 |
commit | 5a86a16bdd14b6a4091671c4bfebc2e593cf1573 (patch) | |
tree | 3107c17ca7628a02e9d2b81964fc38fa9ae28469 /tests/no-signal.c | |
parent | a30a5359f9dd55e31d97925dfcf45f12ecaae37c (diff) | |
download | gnutls-tests-error-checking.tar.gz |
tests: moved child status error checking code in utils.htests-error-checking
Diffstat (limited to 'tests/no-signal.c')
-rw-r--r-- | tests/no-signal.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/no-signal.c b/tests/no-signal.c index 2fe2927368..0894632c8d 100644 --- a/tests/no-signal.c +++ b/tests/no-signal.c @@ -228,8 +228,7 @@ static void ch_handler(int sig) { int status = 0; wait(&status); - if (WEXITSTATUS(status) != 0) - fail("Child died with status %d\n", WEXITSTATUS(status)); + check_wait_status(status); return; } |