mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
lib/drmtest: make signal process cleanup more robust
If we skip a test and and fail somewhere the parent might die before the child. So add some cleanup to handle this case. Also make sure that the parent indeed waits for the child to die. This is required to make the latest version of the piglit runner happy, it tends to wait for all zombies to disappear. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
740065f0f9
commit
a4038d3853
@ -625,11 +625,18 @@ static void sig_handler(int i)
|
||||
sig_stat++;
|
||||
}
|
||||
|
||||
static void signal_helper_exit_handler(int sig)
|
||||
{
|
||||
drmtest_stop_signal_helper();
|
||||
}
|
||||
|
||||
void drmtest_fork_signal_helper(void)
|
||||
{
|
||||
pid_t pid;
|
||||
sighandler_t oldsig;
|
||||
|
||||
drmtest_install_exit_handler(signal_helper_exit_handler);
|
||||
|
||||
signal(SIGUSR1, sig_handler);
|
||||
oldsig = signal(SIGQUIT, SIG_DFL);
|
||||
pid = fork();
|
||||
@ -644,8 +651,12 @@ void drmtest_fork_signal_helper(void)
|
||||
|
||||
void drmtest_stop_signal_helper(void)
|
||||
{
|
||||
if (signal_helper != -1)
|
||||
int exitcode;
|
||||
|
||||
if (signal_helper != -1) {
|
||||
kill(signal_helper, SIGQUIT);
|
||||
wait(&exitcode);
|
||||
}
|
||||
|
||||
if (sig_stat)
|
||||
fprintf(stdout, "signal handler called %llu times\n", sig_stat);
|
||||
|
Loading…
x
Reference in New Issue
Block a user