From 4bf28fa225f6ef36e51e0dd12de8432b98137c51 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Tue, 1 Jan 2019 14:48:51 +0000 Subject: test: media_device: Convert to foreach Prevent duplication of boilerplate code as the suite grows by establishing the foreach pattern in the media_device test suite. Signed-off-by: Kieran Bingham Signed-off-by: Jacopo Mondi --- test/media_device/meson.build | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'test/media_device') diff --git a/test/media_device/meson.build b/test/media_device/meson.build index a7ebed10..40f9ffa4 100644 --- a/test/media_device/meson.build +++ b/test/media_device/meson.build @@ -1,5 +1,11 @@ -media_device_test = executable('media_device_test', 'media_device_test.cpp', - link_with : test_libraries, - include_directories : test_includes_internal) +media_device_tests = [ + ['media_device_test', 'media_device_test.cpp'], +] -test('Media Device Test', media_device_test) +foreach t : media_device_tests + exe = executable(t[0], t[1], + link_with : test_libraries, + include_directories : test_includes_internal) + + test(t[0], exe, suite: 'media_device', is_parallel: false) +endforeach -- cgit v1.2.1