Add an initial simple test tool for the rkisp1 pipeline based upon the IPU3 pipeline test. Signed-off-by: Show Liu <show.liu@linaro.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
12 lines
383 B
Meson
12 lines
383 B
Meson
rkisp1_test = [
|
|
['rkisp1_pipeline_test', 'rkisp1_pipeline_test.cpp'],
|
|
]
|
|
|
|
foreach t : rkisp1_test
|
|
exe = executable(t[0], t[1],
|
|
dependencies : libcamera_dep,
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
|
|
test(t[0], exe, suite : 'rkisp1', is_parallel : false)
|
|
endforeach
|