Files
external_libcamera/test/ipa/libipa/meson.build
Kieran Bingham cb40945db6 test: libipa: Add tests for Quantized types
Provide use case tests for the Quantized types to ensure construction
and usages are consistent and work as expected.

Reviewed-by: Isaac Scott <isaac.scott@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2026-02-19 15:06:21 +00:00

22 lines
846 B
Meson

# SPDX-License-Identifier: CC0-1.0
libipa_test = [
{'name': 'fixedpoint', 'sources': ['fixedpoint.cpp']},
{'name': 'histogram', 'sources': ['histogram.cpp']},
{'name': 'interpolator', 'sources': ['interpolator.cpp']},
{'name': 'pwl', 'sources': ['pwl.cpp'] },
{'name': 'quantized', 'sources': ['quantized.cpp']},
]
foreach test : libipa_test
exe = executable(test['name'], test['sources'],
dependencies : [libcamera_private, libipa_dep],
implicit_include_directories : false,
link_with : [test_libraries],
include_directories : [test_includes_internal,
'../../../src/ipa/libipa/'])
test(test['name'], exe, suite : 'ipa',
should_fail : test.get('should_fail', false))
endforeach