From 7f4ce94ad9e14fa4fd53644abb2ce2bb2bf03dc3 Mon Sep 17 00:00:00 2001 From: Jacopo Mondi Date: Tue, 12 Feb 2019 23:21:16 +0100 Subject: test: v4l2_subdevice: Add format handling test Add test for video format get and set operations on V4L2Subdevice class. Reviewed-by: Kieran Bingham Reviewed-by: Laurent Pinchart Signed-off-by: Jacopo Mondi --- test/v4l2_subdevice/meson.build | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/v4l2_subdevice/meson.build (limited to 'test/v4l2_subdevice/meson.build') diff --git a/test/v4l2_subdevice/meson.build b/test/v4l2_subdevice/meson.build new file mode 100644 index 00000000..f45dca0d --- /dev/null +++ b/test/v4l2_subdevice/meson.build @@ -0,0 +1,10 @@ +v4l2_subdevice_tests = [ + [ 'test_formats', 'test_formats.cpp'], +] + +foreach t : v4l2_subdevice_tests + exe = executable(t[0], [t[1], 'v4l2_subdevice_test.cpp'], + link_with : test_libraries, + include_directories : test_includes_internal) + test(t[0], exe, suite: 'v4l2_subdevice', is_parallel: false) +endforeach -- cgit v1.2.1