tests: fix some Windows testsuite failures

Add test dependencies on the 2 spawn helpers required on Windows.
This commit is contained in:
Benoit Pierre 2024-07-04 19:35:47 +00:00 committed by Philip Withnall
parent 22d699943d
commit caf7f8ef49
3 changed files with 18 additions and 8 deletions

View File

@ -840,7 +840,7 @@ if not meson.is_cross_build()
test_gresource = custom_target('test.gresource', test_gresource = custom_target('test.gresource',
input : 'test.gresource.xml', input : 'test.gresource.xml',
depends : test_generated_txt, depends : [test_generated_txt, gspawn_helpers],
output : 'test.gresource', output : 'test.gresource',
command : [glib_compile_resources, command : [glib_compile_resources,
compiler_type, compiler_type,
@ -855,6 +855,7 @@ if not meson.is_cross_build()
test_resources2_c = custom_target('test_resources2.c', test_resources2_c = custom_target('test_resources2.c',
input : 'test3.gresource.xml', input : 'test3.gresource.xml',
depends : [gspawn_helpers],
output : 'test_resources2.c', output : 'test_resources2.c',
command : [glib_compile_resources, command : [glib_compile_resources,
compiler_type, compiler_type,
@ -868,6 +869,7 @@ if not meson.is_cross_build()
test_resources2_h = custom_target('test_resources2.h', test_resources2_h = custom_target('test_resources2.h',
input : 'test3.gresource.xml', input : 'test3.gresource.xml',
depends : [gspawn_helpers],
output : 'test_resources2.h', output : 'test_resources2.h',
command : [glib_compile_resources, command : [glib_compile_resources,
compiler_type, compiler_type,
@ -881,7 +883,7 @@ if not meson.is_cross_build()
test_resources_c = custom_target('test_resources.c', test_resources_c = custom_target('test_resources.c',
input : 'test2.gresource.xml', input : 'test2.gresource.xml',
depends : big_test_resource, depends : [big_test_resource, gspawn_helpers],
output : 'test_resources.c', output : 'test_resources.c',
command : [glib_compile_resources, command : [glib_compile_resources,
compiler_type, compiler_type,
@ -895,6 +897,7 @@ if not meson.is_cross_build()
digit_test_resources_c = custom_target('digit_test_resources.c', digit_test_resources_c = custom_target('digit_test_resources.c',
input : '111_digit_test.gresource.xml', input : '111_digit_test.gresource.xml',
depends : [gspawn_helpers],
output : 'digit_test_resources.c', output : 'digit_test_resources.c',
command : [glib_compile_resources, command : [glib_compile_resources,
compiler_type, compiler_type,
@ -908,6 +911,7 @@ if not meson.is_cross_build()
digit_test_resources_h = custom_target('digit_test_resources.h', digit_test_resources_h = custom_target('digit_test_resources.h',
input : '111_digit_test.gresource.xml', input : '111_digit_test.gresource.xml',
depends : [gspawn_helpers],
output : 'digit_test_resources.h', output : 'digit_test_resources.h',
command : [glib_compile_resources, command : [glib_compile_resources,
compiler_type, compiler_type,
@ -960,6 +964,7 @@ if not meson.is_cross_build()
test_gresource_binary = custom_target('test5.gresource', test_gresource_binary = custom_target('test5.gresource',
input : 'test5.gresource.xml', input : 'test5.gresource.xml',
depends : [gspawn_helpers],
output : 'test5.gresource', output : 'test5.gresource',
command : [glib_compile_resources, command : [glib_compile_resources,
compiler_type, compiler_type,
@ -975,6 +980,7 @@ if not meson.is_cross_build()
# Create resource data file # Create resource data file
test_resources_binary_c = custom_target('test_resources_binary.c', test_resources_binary_c = custom_target('test_resources_binary.c',
input : 'test5.gresource.xml', input : 'test5.gresource.xml',
depends : [gspawn_helpers],
output : 'test_resources_binary.c', output : 'test_resources_binary.c',
command : [glib_compile_resources, command : [glib_compile_resources,
compiler_type, compiler_type,
@ -1090,7 +1096,7 @@ foreach test_name, extra_args : gio_tests
suite = ['gio'] + extra_args.get('suite', []) suite = ['gio'] + extra_args.get('suite', [])
timeout = suite.contains('slow') ? test_timeout_slow : test_timeout timeout = suite.contains('slow') ? test_timeout_slow : test_timeout
local_test_env = test_env local_test_env = test_env
depends = [extra_args.get('depends', [])] depends = [extra_args.get('depends', []), gspawn_helpers]
foreach program : extra_args.get('extra_programs', []) foreach program : extra_args.get('extra_programs', [])
depends += test_extra_programs_targets[program] depends += test_extra_programs_targets[program]

View File

@ -463,26 +463,30 @@ pkg.generate(libglib,
) )
meson.override_dependency('glib-2.0', libglib_dep) meson.override_dependency('glib-2.0', libglib_dep)
# FIXME: This needs to be added to the `depends` of every invocation of
# glib_compile_resources in the build process. We can drop this when
# https://github.com/mesonbuild/meson/issues/13385 is fixed.
gspawn_helpers = []
# On Windows, glib needs a spawn helper for g_spawn* API # On Windows, glib needs a spawn helper for g_spawn* API
if host_system == 'windows' if host_system == 'windows'
if host_machine.cpu_family() == 'x86' if host_machine.cpu_family() == 'x86'
executable('gspawn-win32-helper', 'gspawn-win32-helper.c', gspawn_helpers += executable('gspawn-win32-helper', 'gspawn-win32-helper.c',
install : true, install : true,
win_subsystem : 'windows', win_subsystem : 'windows',
include_directories : configinc, include_directories : configinc,
dependencies : [libglib_dep]) dependencies : [libglib_dep])
executable('gspawn-win32-helper-console', 'gspawn-win32-helper.c', gspawn_helpers += executable('gspawn-win32-helper-console', 'gspawn-win32-helper.c',
install : true, install : true,
c_args : ['-DHELPER_CONSOLE'], c_args : ['-DHELPER_CONSOLE'],
include_directories : configinc, include_directories : configinc,
dependencies : [libglib_dep]) dependencies : [libglib_dep])
else else
executable('gspawn-win64-helper', 'gspawn-win32-helper.c', gspawn_helpers += executable('gspawn-win64-helper', 'gspawn-win32-helper.c',
install : true, install : true,
win_subsystem : 'windows', win_subsystem : 'windows',
include_directories : configinc, include_directories : configinc,
dependencies : [libglib_dep]) dependencies : [libglib_dep])
executable('gspawn-win64-helper-console', 'gspawn-win32-helper.c', gspawn_helpers += executable('gspawn-win64-helper-console', 'gspawn-win32-helper.c',
install : true, install : true,
c_args : ['-DHELPER_CONSOLE'], c_args : ['-DHELPER_CONSOLE'],
include_directories : configinc, include_directories : configinc,

View File

@ -453,7 +453,7 @@ foreach test_name, extra_args : glib_tests
install: install, install: install,
) )
depends = [extra_args.get('depends', [])] depends = [extra_args.get('depends', []), gspawn_helpers]
suite = ['glib', 'core'] + extra_args.get('suite', []) suite = ['glib', 'core'] + extra_args.get('suite', [])
timeout = suite.contains('slow') ? test_timeout_slow : test_timeout timeout = suite.contains('slow') ? test_timeout_slow : test_timeout