blob: a8290f7e056fe1bed033265fc3eca2362186682c (
plain)
1
2
3
4
5
6
7
8
|
project('test workdir', 'c')
exe = executable('opener', 'opener.c')
test('basic', exe, workdir : meson.source_root())
test('shouldfail', exe, should_fail : true)
subdir('subdir')
|