summaryrefslogtreecommitdiff
path: root/lib/igt_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/igt_core.c')
-rw-r--r--lib/igt_core.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 8e0bd2e8..5bbf13b5 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -1131,6 +1131,9 @@ void igt_exit(void)
kmsg(KERN_INFO "%s: exiting, ret=%d\n", command_str, igt_exitcode);
igt_debug("Exiting with status code %d\n", igt_exitcode);
+ for (int c = 0; c < num_test_children; c++)
+ kill(test_children[c], SIGKILL);
+
if (!test_with_subtests) {
struct timespec now;
const char *result;
@@ -1401,6 +1404,20 @@ void igt_waitchildren(void)
igt_fail(err);
}
+/**
+ * igt_waitchildren_timeout:
+ *
+ * Wait for all children forked with igt_fork, for a maximum of @seconds.
+ *
+ * Wraps igt_waitchildren() and igt_set_timeout()
+ */
+void igt_waitchildren_timeout(int seconds, const char *reason)
+{
+ igt_set_timeout(seconds, reason);
+ igt_waitchildren();
+ igt_reset_timeout();
+}
+
/* exit handler code */
#define MAX_SIGNALS 32
#define MAX_EXIT_HANDLERS 10