diff options
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/llvmpipe/meson.build | 4 | ||||
-rw-r--r-- | src/gallium/drivers/r300/meson.build | 4 | ||||
-rw-r--r-- | src/gallium/state_trackers/xvmc/meson.build | 8 |
3 files changed, 12 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/meson.build b/src/gallium/drivers/llvmpipe/meson.build index 597245ee814..0b0ac2a3a02 100644 --- a/src/gallium/drivers/llvmpipe/meson.build +++ b/src/gallium/drivers/llvmpipe/meson.build @@ -111,7 +111,9 @@ driver_swrast = declare_dependency( if with_tests and with_gallium_softpipe and with_llvm foreach t : ['lp_test_format', 'lp_test_arit', 'lp_test_blend', 'lp_test_conv', 'lp_test_printf'] - test(t, executable( + test( + t, + executable( t, ['@[email protected]'.format(t), 'lp_test_main.c'], dependencies : [dep_llvm, dep_dl, dep_thread, dep_clock], diff --git a/src/gallium/drivers/r300/meson.build b/src/gallium/drivers/r300/meson.build index 90fa5949fa4..698e4608ded 100644 --- a/src/gallium/drivers/r300/meson.build +++ b/src/gallium/drivers/r300/meson.build @@ -135,7 +135,9 @@ driver_r300 = declare_dependency( ) if with_tests - test('r300_compiler_test', executable( + test( + 'r300_compiler_test', + executable( 'r300_compiler_test', files( 'compiler/tests/r300_compiler_tests.c', diff --git a/src/gallium/state_trackers/xvmc/meson.build b/src/gallium/state_trackers/xvmc/meson.build index a1022c164b1..2c98b0290d9 100644 --- a/src/gallium/state_trackers/xvmc/meson.build +++ b/src/gallium/state_trackers/xvmc/meson.build @@ -32,7 +32,9 @@ if with_tests dep_real_xvmc = dependency('xvmc') foreach x : ['context', 'surface', 'subpicture', 'blocks', 'rendering'] _name = 'xvmc_@0@'.format(x) - test(_name, executable( + test( + _name, + executable( _name, files('tests/test_@[email protected]'.format(x), 'tests/testlib.c'), dependencies : [ @@ -42,7 +44,9 @@ if with_tests ) endforeach - test('xbmc_bench', executable( + test( + 'xvmc_bench', + executable( 'xvmc_bench', files('tests/xvmc_bench.c', 'tests/testlib.c'), dependencies : [ |