2017-06-24 17:40:33 +00:00
|
|
|
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
|
2022-07-29 17:48:05 +00:00
|
|
|
test_file = configure_file(input: test + '.sh', output: test, copy: true)
|
2022-07-29 17:53:32 +00:00
|
|
|
run_command('chmod', '755', test_file, check : true)
|
2017-06-24 17:40:33 +00:00
|
|
|
endforeach
|