summaryrefslogtreecommitdiff
path: root/runner/testdata/meson.build
blob: 011eff8e717b90ca979fd5630b91188d5d426dd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

testdata_progs = [ 'successtest',
		   'no-subtests',
		   'skippers',
		 ]

testdata_executables = []

foreach prog : testdata_progs
	testdata_executables += executable(prog, prog + '.c',
					   dependencies : igt_deps,
					   install : false)
endforeach

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()