blob: 1d448ecc587aadaf97ee4cd605e5e16c5132a314 (
plain)
1
2
3
4
5
6
7
|
project('trivial test', 'c')
py_inst = import('python').find_installation()
exe = executable('trivialprog', 'trivial.c')
runt = run_target('invalid', command: [py_inst, '--version'])
test('runtest', exe, args: runt)
|