From 4cbf83da408c45c64b1b293480ebea26cec88222 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Thu, 30 May 2019 14:30:35 +0100 Subject: libcamera: test: Add ControlValue test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add initial basic testing for the new ControlValue class. Signed-off-by: Kieran Bingham Reviewed-by: Niklas Söderlund Reviewed-by: Laurent Pinchart Signed-off-by: Laurent Pinchart --- test/controls/meson.build | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/controls/meson.build (limited to 'test/controls/meson.build') diff --git a/test/controls/meson.build b/test/controls/meson.build new file mode 100644 index 00000000..1161864d --- /dev/null +++ b/test/controls/meson.build @@ -0,0 +1,11 @@ +control_tests = [ + [ 'control_value', 'control_value.cpp' ], +] + +foreach t : control_tests + exe = executable(t[0], t[1], + dependencies : libcamera_dep, + link_with : test_libraries, + include_directories : test_includes_internal) + test(t[0], exe, suite : 'controls', is_parallel : false) +endforeach -- cgit v1.2.1