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>
This commit is contained in:
Paul Elder 2021-09-14 10:04:13 +09:00
parent c7daf645d4
commit 2cc4303b17

View file

@ -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