From 86a1900657db9448a42593373f62fd7e9db3c6db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20S=C3=B6derlund?= Date: Tue, 5 Feb 2019 21:32:04 +0100 Subject: test: camera: Add read default configuration test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a test to verify reading the default configuration from a camera works. Signed-off-by: Niklas Söderlund Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- test/camera/meson.build | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/camera/meson.build (limited to 'test/camera/meson.build') diff --git a/test/camera/meson.build b/test/camera/meson.build new file mode 100644 index 00000000..186ba211 --- /dev/null +++ b/test/camera/meson.build @@ -0,0 +1,12 @@ +# 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 -- cgit v1.2.1