From 870f2d3b1fcb85e4bf2484b32c5a03d39334e822 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sun, 27 Oct 2019 08:04:12 +0200 Subject: test: ipa: Add IPA wrappers test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Wrap an IPAInterface in an IPAInterfaceWrapper in an IPAContextWrapper, and verify that the translation between C and C++ APIs work correctly. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- test/ipa/meson.build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/ipa/meson.build') diff --git a/test/ipa/meson.build b/test/ipa/meson.build index c501fcf9..f925c50a 100644 --- a/test/ipa/meson.build +++ b/test/ipa/meson.build @@ -1,13 +1,14 @@ ipa_test = [ ['ipa_module_test', 'ipa_module_test.cpp'], ['ipa_interface_test', 'ipa_interface_test.cpp'], + ['ipa_wrappers_test', 'ipa_wrappers_test.cpp'], ] foreach t : ipa_test exe = executable(t[0], t[1], dependencies : libcamera_dep, - link_with : test_libraries, - include_directories : test_includes_internal) + link_with : [libipa, test_libraries], + include_directories : [libipa_includes, test_includes_internal]) test(t[0], exe, suite : 'ipa') endforeach -- cgit v1.2.1