libcamera/test/pipeline/ipu3/meson.build
Jacopo Mondi e410062003 test: pipeline: IPU3: Add IPU3 pipeline test
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>
2019-01-22 11:16:28 +01:00

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