From 2cc4303b172a76ac5b431c4fb4df8a083f7d3fcf Mon Sep 17 00:00:00 2001 From: Paul Elder Date: Tue, 14 Sep 2021 10:04:13 +0900 Subject: test: v4l2_compat: Skip vimc as a test candidate As the vimc scaler prevents us from passing v4l2-compliance, skip it until the fix has been merged. Instead of removing it from the supported_pipelines list, add an extra check, since we will have the same construct later when we check for the kernel version. Signed-off-by: Paul Elder Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- test/v4l2_compat/v4l2_compat_test.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/v4l2_compat/v4l2_compat_test.py b/test/v4l2_compat/v4l2_compat_test.py index be16af3b..29c25974 100755 --- a/test/v4l2_compat/v4l2_compat_test.py +++ b/test/v4l2_compat/v4l2_compat_test.py @@ -134,6 +134,10 @@ def main(argv): if driver not in supported_pipelines: continue + # TODO: Add kernel version check when vimc supports scaling + if driver == "vimc": + continue + if not args.all and driver in drivers_tested: continue -- cgit v1.2.1