65 lines
1.9 KiB
Meson
65 lines
1.9 KiB
Meson
# 19 january 2020
|
|
|
|
libui_test_sources = [
|
|
'initmain.c',
|
|
'noinitwrongthread.c',
|
|
]
|
|
|
|
libui_test_sources_without_cases = [
|
|
'errors.c',
|
|
'main.c',
|
|
]
|
|
if libui_OS == 'windows'
|
|
libui_test_sources_without_cases += [
|
|
'thread_windows.c',
|
|
windows.compile_resources('resources_' + libui_mode + '.rc',
|
|
args: libui_manifest_args,
|
|
depend_files: ['test_' + libui_mode + '.manifest']),
|
|
]
|
|
else
|
|
libui_test_sources_without_cases += [
|
|
'thread_notwindows.c',
|
|
]
|
|
endif
|
|
|
|
libui_test_deps = [
|
|
dependency('threads',
|
|
required: true),
|
|
]
|
|
if libui_OS == 'windows'
|
|
# static mode already gives us these dependencies
|
|
if libui_mode != 'static'
|
|
libui_test_deps += [
|
|
meson.get_compiler('c').find_library('kernel32',
|
|
required: true),
|
|
meson.get_compiler('c').find_library('user32',
|
|
required: true),
|
|
]
|
|
endif
|
|
endif
|
|
|
|
# TODO once we upgrade to 0.49.0, add pie: true
|
|
# TODO once we upgrade to 0.50.0, add protocol: 'exitcode'
|
|
libui_testparent = executable('testparent', libui_test_sources + libui_test_sources_without_cases,
|
|
dependencies: libui_binary_deps + libui_test_deps,
|
|
link_with: libui_libui,
|
|
gui_app: false,
|
|
install: false)
|
|
|
|
pymod = import('python')
|
|
python = pymod.find_installation()
|
|
# Using files() is the cleanest way to ensure the python script gets the right filenames regardless of how meson sandboxes the command it's running.
|
|
libui_testlist_py = files(['testlist.py'])
|
|
libui_test_sources_files = files(libui_test_sources)
|
|
runresult = run_command(python, libui_testlist_py + ['list'] + libui_test_sources_files)
|
|
if runresult.returncode() != 0
|
|
error('testlist.py failed; cannot compute list of test cases. Exit code @0@; stderr:\n@1@'.format(runresult.returncode(), runresult.stderr()))
|
|
endif
|
|
# TODO make sure this works properly on Windows
|
|
foreach casename : runresult.stdout().split()
|
|
test(casename, libui_testparent,
|
|
args: [casename],
|
|
is_parallel: false,
|
|
should_fail: false)
|
|
endforeach
|