summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Klug <stefan.klug@ideasonboard.com>2025-04-01 14:36:12 +0200
committerStefan Klug <stefan.klug@ideasonboard.com>2025-04-03 12:36:07 +0200
commit3b9c432920e9ab0b28b5fe15b269e5301f30186f (patch)
treeec4126dafbd8b3980e8b30e2833f284460c5e5a0
parent8936e81e3f2f160966f59e1d19103e95098db1da (diff)
test: ipa: libipa: histogram: Add tests for small inter quantile mean ranges
Add tests for small inter quantile mean ranges. As these cases fail at the moment, 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>
-rw-r--r--test/ipa/libipa/histogram.cpp4
-rw-r--r--test/ipa/libipa/meson.build2
2 files changed, 5 insertions, 1 deletions
diff --git a/test/ipa/libipa/histogram.cpp b/test/ipa/libipa/histogram.cpp
index 5ce84a61..77ff31a6 100644
--- a/test/ipa/libipa/histogram.cpp
+++ b/test/ipa/libipa/histogram.cpp
@@ -55,6 +55,10 @@ protected:
/* Test interquantile mean that starts and ends in the middle of a bin. */
ASSERT_EQ(hist.interQuantileMean(0.25, 0.75), 1.0);
+ /* Test small ranges at the borders of the histogram. */
+ ASSERT_EQ(hist.interQuantileMean(0.0, 0.1), 0.1);
+ ASSERT_EQ(hist.interQuantileMean(0.9, 1.0), 1.9);
+
return TestPass;
}
};
diff --git a/test/ipa/libipa/meson.build b/test/ipa/libipa/meson.build
index 8c63ebd8..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']},
]