mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-23 17:33:50 +03:00
meson: only apply threads_dep to runtest
Not needed elsewhere. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
32cac377c8
commit
f61d23b8c6
28
meson.build
28
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'
|
||||
|
Loading…
Reference in New Issue
Block a user