diff options
author | Stefan Klug <stefan.klug@ideasonboard.com> | 2025-04-01 14:36:10 +0200 |
---|---|---|
committer | Stefan Klug <stefan.klug@ideasonboard.com> | 2025-04-03 12:36:07 +0200 |
commit | 781e2f4d0c3bfaf0d53a76b0a0f08aa5c742c7a0 (patch) | |
tree | 92b420d0a8b77a13b6ed6bac961e35450258d226 /test/ipa/libipa/meson.build | |
parent | 1a17a6aac768f2d521ed873fba4cf127db9928f5 (diff) |
test: ipa: libipa: histogram: Add tests for quantile() returning a fraction
Add tests for quantile() returning a fractional value. These cases will
get fixed in the next commit. Therefore mark the test as should_fail.
Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'test/ipa/libipa/meson.build')
-rw-r--r-- | test/ipa/libipa/meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/ipa/libipa/meson.build b/test/ipa/libipa/meson.build index f094c159..83c84bd8 100644 --- a/test/ipa/libipa/meson.build +++ b/test/ipa/libipa/meson.build @@ -2,7 +2,7 @@ libipa_test = [ {'name': 'fixedpoint', 'sources': ['fixedpoint.cpp']}, - {'name': 'histogram', 'sources': ['histogram.cpp']}, + {'name': 'histogram', 'sources': ['histogram.cpp'], 'should_fail': true}, {'name': 'interpolator', 'sources': ['interpolator.cpp']}, ] @@ -14,5 +14,6 @@ foreach test : libipa_test include_directories : [test_includes_internal, '../../../src/ipa/libipa/']) - test(test['name'], exe, suite : 'ipa') + test(test['name'], exe, suite : 'ipa', + should_fail : test.get('should_fail', false)) endforeach |