4bf28fa225
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 <kieran.bingham@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
12 lines
347 B
Meson
12 lines
347 B
Meson
media_device_tests = [
|
|
['media_device_test', 'media_device_test.cpp'],
|
|
]
|
|
|
|
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
|