]> git.sesse.net Git - movit/commitdiff
Make the sRGB intermediate test slightly more stringent (so that e.g. 0.0 will not...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 23 Feb 2016 21:41:33 +0000 (22:41 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 23 Feb 2016 21:41:33 +0000 (22:41 +0100)
effect_chain_test.cpp

index a9c06bad0e4f0c2bee5da217aed37f0a0b9b382e..adf832ac61e4ad445f115a72b83f324352f78812 100644 (file)
@@ -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_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
 }
 
 }  // namespace movit