forked from ariadne/pkgconf
24 lines
518 B
Meson
24 lines
518 B
Meson
|
configure_file(input: 'Kyuafile.in', output: 'Kyuafile', configuration: cdata)
|
||
|
configure_file(input: 'test_env.sh.in', output: 'test_env.sh', configuration: cdata)
|
||
|
|
||
|
|
||
|
tests = [
|
||
|
'basic',
|
||
|
'builtins',
|
||
|
'conflicts',
|
||
|
'framework',
|
||
|
'parser',
|
||
|
'provides',
|
||
|
'regress',
|
||
|
'requires',
|
||
|
'sysroot',
|
||
|
'version'
|
||
|
]
|
||
|
|
||
|
|
||
|
# yuck
|
||
|
foreach test : tests
|
||
|
configure_file(input: test + '.sh', output: test, configuration: configuration_data())
|
||
|
run_command('chmod', '755', join_paths(meson.build_root(), 'tests', test))
|
||
|
endforeach
|