Instead of printing the status value from wait(), decode it into
more human-readable output. reviewed by jmmv
This commit is contained in:
parent
ebcec758d8
commit
04b935ee0a
23
external/bsd/atf/dist/atf-c/tc.c
vendored
23
external/bsd/atf/dist/atf-c/tc.c
vendored
@ -404,11 +404,24 @@ body_parent(const atf_tc_t *tc, const atf_fs_path_t *workdir, pid_t pid,
|
||||
err = atf_libc_error(errno, "Error waiting for child process "
|
||||
"%d", pid);
|
||||
} else {
|
||||
if (!WIFEXITED(state) || WEXITSTATUS(state) != EXIT_SUCCESS)
|
||||
err = atf_tcr_init_reason_fmt(tcr, atf_tcr_failed_state,
|
||||
"Test case did not exit cleanly; "
|
||||
"state was %d", state);
|
||||
else
|
||||
if (!WIFEXITED(state) || WEXITSTATUS(state) != EXIT_SUCCESS) {
|
||||
if (WIFEXITED(state))
|
||||
err = atf_tcr_init_reason_fmt(tcr, atf_tcr_failed_state,
|
||||
"Test case did not exit cleanly; "
|
||||
"exit status was %d",
|
||||
WEXITSTATUS(state));
|
||||
else if (WIFSIGNALED(state))
|
||||
err = atf_tcr_init_reason_fmt(tcr, atf_tcr_failed_state,
|
||||
"Test case did not exit cleanly: "
|
||||
"%s%s",
|
||||
strsignal(WTERMSIG(state)),
|
||||
WCOREDUMP(state) ?
|
||||
" (core dumped)" : "");
|
||||
else
|
||||
err = atf_tcr_init_reason_fmt(tcr, atf_tcr_failed_state,
|
||||
"Test case did not exit cleanly; "
|
||||
"state was %d", state);
|
||||
} else
|
||||
err = get_tc_result(workdir, tcr);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user