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