mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-26 17:26:14 +00:00
lib/drmtest: Improve output when igt_waitchildren fails
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
8eaa0982d0
commit
6f118bf96a
@ -1001,15 +1001,19 @@ void igt_waitchildren(void)
|
|||||||
;
|
;
|
||||||
|
|
||||||
if (status != 0) {
|
if (status != 0) {
|
||||||
if (WIFEXITED(status))
|
if (WIFEXITED(status)) {
|
||||||
|
printf("child %i failed with exit status %i\n",
|
||||||
|
nc, WEXITSTATUS(status));
|
||||||
igt_fail(WEXITSTATUS(status));
|
igt_fail(WEXITSTATUS(status));
|
||||||
else if (WIFSIGNALED(status)) {
|
} else if (WIFSIGNALED(status)) {
|
||||||
printf("child %i died with signal %i, %s\n",
|
printf("child %i died with signal %i, %s\n",
|
||||||
nc, WTERMSIG(status),
|
nc, WTERMSIG(status),
|
||||||
strsignal(WTERMSIG(status)));
|
strsignal(WTERMSIG(status)));
|
||||||
igt_fail(99);
|
igt_fail(99);
|
||||||
} else
|
} else {
|
||||||
|
printf("Unhandled failure in child %i\n", nc);
|
||||||
abort();
|
abort();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user