Use the dummy IPA for testing/sample IPA instead of the earlier test IPA. Remove the test IPA, and update tests and meson accordingly. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12 lines
339 B
Meson
12 lines
339 B
Meson
ipa_test = [
|
|
['ipa_test', 'ipa_test.cpp'],
|
|
]
|
|
|
|
foreach t : ipa_test
|
|
exe = executable(t[0], t[1],
|
|
dependencies : libcamera_dep,
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
|
|
test(t[0], exe, suite : 'ipa', is_parallel : false)
|
|
endforeach
|