1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
testdata_progs = [ 'successtest',
'no-subtests',
'skippers',
'dynamic',
'abort',
'abort-dynamic',
'abort-fixture',
'abort-simple',
]
testdata_executables = []
foreach prog : testdata_progs
testdata_executables += executable(prog, prog + '.c',
dependencies : igt_deps,
install : false)
endforeach
configure_file(input : 'test-blacklist.txt',
output : 'test-blacklist.txt', copy : true)
configure_file(input : 'test-blacklist2.txt',
output : 'test-blacklist2.txt', copy : true)
testdata_list = custom_target('testdata_testlist',
output : 'test-list.txt',
command : [ gen_testlist, '@OUTPUT@', testdata_progs ],
build_by_default : true)
testdata_dir = meson.current_build_dir()
|