Add test for the Intel IPU3 pipeline that lists all the cameras registered in the system and verifies the result matches the expected. This test is meant to be run on IPU3 platforms, it gets skipped otherwise. Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
11 lines
315 B
Meson
11 lines
315 B
Meson
ipu3_test = [
|
|
['ipu3_pipeline_test', 'ipu3_pipeline_test.cpp'],
|
|
]
|
|
|
|
foreach t : ipu3_test
|
|
exe = executable(t[0], t[1],
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
|
|
test(t[0], exe, suite: 'ipu3', is_parallel: false)
|
|
endforeach
|