From f61d23b8c6500a759362285c3094b4e330db4dca Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sun, 16 Jun 2024 19:56:07 -0700 Subject: [PATCH] meson: only apply threads_dep to runtest Not needed elsewhere. Signed-off-by: Rosen Penev --- meson.build | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/meson.build b/meson.build index f69633b5..8c441d70 100644 --- a/meson.build +++ b/meson.build @@ -703,25 +703,25 @@ testdso_mod = shared_module( ## tests -checks = [ - 'runsuite', - 'runtest', - 'runxmlconf', +checks = { + 'runsuite': [], + 'runtest': threads_dep, + 'runxmlconf': [], # Disabled for now, see #694 -# 'testModule', - 'testapi', - 'testchar', - 'testdict', - 'testlimits', - 'testparser', - 'testrecurse', -] +# 'testModule': [], + 'testapi': [], + 'testchar': [], + 'testdict': [], + 'testlimits': [], + 'testparser': [], + 'testrecurse': [], +} -foreach check : checks +foreach check, deps : checks exe = executable( check, files(check + '.c'), - dependencies: [threads_dep, xml_dep], + dependencies: [deps, xml_dep], include_directories: config_dir, ) if check != 'testlimits'