Add tests for the Interpolator class. Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
19 lines
551 B
Meson
19 lines
551 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
subdir('libipa')
|
|
subdir('rkisp1')
|
|
|
|
ipa_test = [
|
|
{'name': 'ipa_module_test', 'sources': ['ipa_module_test.cpp']},
|
|
{'name': 'ipa_interface_test', 'sources': ['ipa_interface_test.cpp']},
|
|
]
|
|
|
|
foreach test : ipa_test
|
|
exe = executable(test['name'], test['sources'],
|
|
dependencies : [libcamera_private, libipa_dep],
|
|
link_with : [test_libraries],
|
|
include_directories : [test_includes_internal])
|
|
|
|
test(test['name'], exe, suite : 'ipa')
|
|
endforeach
|