From 8ccb04a16872ffc481b0b7d2bdcbcb3681db9263 Mon Sep 17 00:00:00 2001 From: Stefan Klug Date: Fri, 13 Sep 2024 01:05:46 +0200 Subject: test: ipa: libipa: Add tets for Interpolator Add tests for the Interpolator class. Signed-off-by: Stefan Klug Reviewed-by: Kieran Bingham Reviewed-by: Paul Elder --- test/ipa/libipa/meson.build | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/ipa/libipa/meson.build (limited to 'test/ipa/libipa/meson.build') diff --git a/test/ipa/libipa/meson.build b/test/ipa/libipa/meson.build new file mode 100644 index 00000000..4d2427db --- /dev/null +++ b/test/ipa/libipa/meson.build @@ -0,0 +1,15 @@ +# SPDX-License-Identifier: CC0-1.0 + +libipa_test = [ + {'name': 'interpolator', 'sources': ['interpolator.cpp']}, +] + +foreach test : libipa_test + exe = executable(test['name'], test['sources'], + dependencies : [libcamera_private, libipa_dep], + link_with : [test_libraries], + include_directories : [test_includes_internal, + '../../../src/ipa/libipa/']) + + test(test['name'], exe, suite : 'ipa') +endforeach -- cgit v1.2.1