summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Elder <paul.elder@ideasonboard.com>2021-09-14 10:04:13 +0900
committerPaul Elder <paul.elder@ideasonboard.com>2021-09-23 16:04:57 +0900
commit2cc4303b172a76ac5b431c4fb4df8a083f7d3fcf (patch)
tree377e55d8d75dc63e805df5a51386f72484bd0b84 /test
parentc7daf645d449fc74415770b9d811ec21571e7823 (diff)
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 <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test')
-rwxr-xr-xtest/v4l2_compat/v4l2_compat_test.py4
1 files changed, 4 insertions, 0 deletions
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