You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
684 B
26 lines
684 B
|
|
testdata_progs = [ 'successtest',
|
|
'no-subtests',
|
|
'skippers',
|
|
]
|
|
|
|
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()
|