diff options
author | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-09-13 01:05:46 +0200 |
---|---|---|
committer | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-09-23 16:42:45 +0200 |
commit | 8ccb04a16872ffc481b0b7d2bdcbcb3681db9263 (patch) | |
tree | f687cc9ec6525d51ca8044f371b2ff972c6d8ad7 /test/ipa/libipa/meson.build | |
parent | 2e936455ae2eaa761f37b8678e0f62f419a4b4b3 (diff) |
test: ipa: libipa: Add tets for Interpolator
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>
Diffstat (limited to 'test/ipa/libipa/meson.build')
-rw-r--r-- | test/ipa/libipa/meson.build | 15 |
1 files changed, 15 insertions, 0 deletions
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 |