Wrote the python script to generate the list of test cases and integrated it into meson.build. This should be fun.

This commit is contained in:
Pietro Gagliardi 2020-01-20 18:18:58 -05:00
parent f4218af3f5
commit 0c66fc3995
2 changed files with 47 additions and 0 deletions

View File

@ -1 +1,37 @@
# 19 january 2020
libui_test_sources = [
'main.c',
]
libui_test_sources_without_cases = []
if libui_OS == 'windows'
libui_test_sources_without_cases += [
windows.compile_resources('resources_' + libui_mode + '.rc',
args: libui_manifest_args,
depend_files: ['test_' + libui_mode + '.manifest']),
]
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,
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.
runresult = run_command(python, files(['testlist.py'] + libui_test_sources))
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_tester,
args: [casename],
is_parallel: false,
should_fail: false)
endforeach

11
test/testlist.py Normal file
View File

@ -0,0 +1,11 @@
# 20 january 2020
# note: python 3
import fileinput
import re
r = re.compile('^Test\(([A-Za-z0-9_]+)\)$')
for line in fileinput.input():
match = r.match(line)
if match is not None:
print('Test' + match.group(1))