libcamera/test/v4l2_compat/meson.build
Paul Elder e37e72c61c tests: v4l2_compat: Add test for v4l2_compat
Test the V4L2 compatibility layer by running v4l2-compliance -s on every
/dev/video* device.

Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2020-07-10 16:11:53 +09:00

10 lines
256 B
Meson

# SPDX-License-Identifier: CC0-1.0
if is_variable('v4l2_compat')
v4l2_compat_test = files('v4l2_compat_test.py')
test('v4l2_compat_test', v4l2_compat_test,
args : v4l2_compat,
suite : 'v4l2_compat',
timeout : 60)
endif