diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc index 41f195140..0c2f324e0 100644 --- a/test/test.cc +++ b/test/test.cc @@ -236,7 +236,11 @@ check_image (boost::filesystem::path ref, boost::filesystem::path check) ref_image.read (ref.string ()); Magick::Image check_image; check_image.read (check.string ()); - BOOST_CHECK_MESSAGE (ref_image.compare (check_image), ref << " differs from " << check); + BOOST_CHECK_MESSAGE ( + !ref_image.compare(check_image), + ref << " differs from " << check << " " + << ref_image.meanErrorPerPixel() << " " << ref_image.normalizedMaxError() << " " << ref_image.normalizedMeanError() + ); } void |
