X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Ftest.cc;h=4dab0cff1b5895c0e197e19c0db140092662757e;hb=62f9b78a2eb5f0fc6b9028264bac6ad501d83309;hp=15bb2cc55e5a12f84198508846ea2636e8a2f732;hpb=6fb258f79548b588031c4cc6d0ca1774ca35b752;p=dcpomatic.git diff --git a/test/test.cc b/test/test.cc index 15bb2cc55..4dab0cff1 100644 --- a/test/test.cc +++ b/test/test.cc @@ -363,9 +363,9 @@ static double rms_error (boost::filesystem::path ref, boost::filesystem::path check) { - FFmpegImageProxy ref_proxy (ref, VideoRange::FULL); + FFmpegImageProxy ref_proxy (ref); auto ref_image = ref_proxy.image().image; - FFmpegImageProxy check_proxy (check, VideoRange::FULL); + FFmpegImageProxy check_proxy (check); auto check_image = check_proxy.image().image; BOOST_REQUIRE_EQUAL (ref_image->pixel_format(), check_image->pixel_format()); @@ -910,7 +910,7 @@ make_and_verify_dcp (shared_ptr film, vector void check_int_close (int a, int b, int d) { - BOOST_CHECK (std::abs(a - b) < d); + BOOST_CHECK_MESSAGE (std::abs(a - b) < d, a << " differs from " << b << " by more than " << d); }