From 611a0203088a4d7f452cf518a592470d92a003f4 Mon Sep 17 00:00:00 2001 From: Emmanuel Fleury Date: Thu, 5 May 2022 10:51:16 +0200 Subject: [PATCH] Move tests/threadpool-test.c to glib/test/thread-pool-slow.c Helps issue #1434 --- glib/tests/meson.build | 1 + tests/threadpool-test.c => glib/tests/thread-pool-slow.c | 0 tests/meson.build | 1 - 3 files changed, 1 insertion(+), 1 deletion(-) rename tests/threadpool-test.c => glib/tests/thread-pool-slow.c (100%) diff --git a/glib/tests/meson.build b/glib/tests/meson.build index 40a75debb..ba7ac5108 100644 --- a/glib/tests/meson.build +++ b/glib/tests/meson.build @@ -116,6 +116,7 @@ glib_tests = { 'test-printf' : {}, 'thread' : {}, 'thread-pool' : {}, + 'thread-pool-slow' : {'suite' : ['slow']}, 'timeout' : {}, 'timer' : {}, 'tree' : {}, diff --git a/tests/threadpool-test.c b/glib/tests/thread-pool-slow.c similarity index 100% rename from tests/threadpool-test.c rename to glib/tests/thread-pool-slow.c diff --git a/tests/meson.build b/tests/meson.build index 3290ffa6f..5a50f80e2 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -23,7 +23,6 @@ tests = { 'dependencies' : [libgthread_dep], }, 'thread-test' : {}, - 'threadpool-test' : {'suite' : ['slow']}, 'module-test-library' : { 'dependencies' : [libgmodule_dep], 'export_dynamic' : true,