diff --git a/libs/gst/check/gstcheck.c b/libs/gst/check/gstcheck.c index 123f86e5e3..68b4cd3df2 100644 --- a/libs/gst/check/gstcheck.c +++ b/libs/gst/check/gstcheck.c @@ -1090,6 +1090,7 @@ gst_check_run_suite (Suite * suite, const gchar * name, const gchar * fname) g_timer_destroy (timer); g_free (xmlfilename); srunner_free (sr); + g_thread_pool_stop_unused_threads (); return nf; } diff --git a/libs/gst/check/libcheck/check.c b/libs/gst/check/libcheck/check.c index 28eca52fed..8ef3b62fc3 100644 --- a/libs/gst/check/libcheck/check.c +++ b/libs/gst/check/libcheck/check.c @@ -26,6 +26,8 @@ #include #include +#include + #include "internal-check.h" #include "check_error.h" #include "check_list.h" @@ -386,6 +388,7 @@ _ck_assert_failed (const char *file, int line, const char *expr, ...) send_failure_info (to_send); #if defined(HAVE_FORK) && HAVE_FORK==1 if (cur_fork_status () == CK_FORK) { + g_thread_pool_stop_unused_threads (); _exit (1); } #endif /* HAVE_FORK */ diff --git a/libs/gst/check/libcheck/check_run.c b/libs/gst/check/libcheck/check_run.c index f686ca097f..a97379c91a 100644 --- a/libs/gst/check/libcheck/check_run.c +++ b/libs/gst/check/libcheck/check_run.c @@ -29,6 +29,8 @@ #include #include +#include + #include "internal-check.h" #include "check_error.h" #include "check_list.h" @@ -466,6 +468,7 @@ tcase_run_tfun_fork (SRunner * sr, TCase * tc, TF * tfun, int i) clock_gettime (check_get_clockid (), &ts_end); tcase_run_checked_teardown (tc); send_duration_info (DIFF_IN_USEC (ts_start, ts_end)); + g_thread_pool_stop_unused_threads (); exit (EXIT_SUCCESS); } else { group_pid = pid; @@ -784,9 +787,11 @@ check_waitpid_and_exit (pid_t pid CK_ATTRIBUTE_UNUSED) } while (pid_w == -1); if (waserror (status, 0)) { + g_thread_pool_stop_unused_threads (); exit (EXIT_FAILURE); } } + g_thread_pool_stop_unused_threads (); exit (EXIT_SUCCESS); #else /* HAVE_FORK */ eprintf ("This version does not support fork", __FILE__, __LINE__); diff --git a/libs/gst/check/libcheck/meson.build b/libs/gst/check/libcheck/meson.build index 964165379e..c6d496d182 100644 --- a/libs/gst/check/libcheck/meson.build +++ b/libs/gst/check/libcheck/meson.build @@ -83,7 +83,7 @@ endforeach libcheck = static_library('check', libcheck_files, include_directories : [configinc, internal_check_h_inc], - dependencies : [rt_lib, mathlib], + dependencies : [rt_lib, mathlib, glib_dep], c_args: gst_c_args + libcheck_visibility_args + no_warn_args + # Don't want libcompat to think we don't have these and substitute # replacements since we don't check for or define these. See libcompat.h