From 009c7510df1ac1b70662b0085ebaf1a619dd761a Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 23 Feb 2016 22:41:33 +0100 Subject: [PATCH] Make the sRGB intermediate test slightly more stringent (so that e.g. 0.0 will not work). --- effect_chain_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/effect_chain_test.cpp b/effect_chain_test.cpp index a9c06ba..adf832a 100644 --- a/effect_chain_test.cpp +++ b/effect_chain_test.cpp @@ -1315,6 +1315,8 @@ TEST(EffectChainTest, sRGBIntermediate) { EXPECT_GE(fabs(out_data[1] - data[1]), 1e-3) << "Expected sRGB not to be able to represent 0.5 exactly (got " << out_data[1] << ")"; + EXPECT_LT(fabs(out_data[1] - data[1]), 0.1f) + << "Expected sRGB to be able to represent 0.5 approximately (got " << out_data[1] << ")"; } } // namespace movit -- 2.39.2