Tag
Hash :
dd779ad9
Author :
Date :
2022-07-29T10:53:32
meson: add check to run_command Because we really should be checking that it succeeds, and because not setting it is deprecated.
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
test_file = configure_file(input: test + '.sh', output: test, copy: true)
run_command('chmod', '755', test_file, check : true)
endforeach