Files
external_libcamera/test/media_device/meson.build
T
Kieran Bingham 4bf28fa225 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 <kieran.bingham@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
2019-01-14 17:54:56 +01:00

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