Files
external_libcamera/test/camera/meson.build
Niklas Söderlund 86a1900657 test: camera: Add read default configuration test
Add a test to verify reading the default configuration from a camera
works.

Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2019-03-14 15:59:00 +01:00

13 lines
417 B
Meson

# Tests are listed in order of complexity.
# They are not alphabetically sorted.
camera_tests = [
[ 'configuration_default', 'configuration_default.cpp' ],
]
foreach t : camera_tests
exe = executable(t[0], [t[1], 'camera_test.cpp'],
link_with : test_libraries,
include_directories : test_includes_internal)
test(t[0], exe, suite: 'camera', is_parallel: false)
endforeach