diff --git a/lib/drmtest.c b/lib/drmtest.c index 435a7458..706357de 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -1085,6 +1085,7 @@ void igt_stop_helper(struct igt_helper_process *proc) while (waitpid(proc->pid, &status, 0) == -1 && errno == -EINTR) ; + igt_assert(WIFSIGNALED(status) && WTERMSIG(status) == SIGQUIT); proc->running = false;