summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-05-03 01:37:46 +0200
committerCarl Hetherington <cth@carlh.net>2021-05-03 01:39:32 +0200
commit6041247db96664be4785098f9a190adb279a3f3e (patch)
tree7b36d9fd547b432f45291f42d6e07e1e11678213
parent9dcfb0c57bf107626dcfc94c37ad14acc9045e3b (diff)
Test output tweaks.
-rw-r--r--test/image_test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/image_test.cc b/test/image_test.cc
index 4cc80b7e0..bbaf9bd74 100644
--- a/test/image_test.cc
+++ b/test/image_test.cc
@@ -538,19 +538,19 @@ BOOST_AUTO_TEST_CASE (make_part_black_test)
int b = *q++;
if (x >= j.first && x < (j.first + j.second)) {
BOOST_CHECK_MESSAGE (
- r < 3, "red=" << static_cast<int>(r) << " at x=" << x << " format " << i << " from " << j.first << " width " << j.second
+ r < 3, "red=" << static_cast<int>(r) << " at (" << x << "," << y << ") format " << i << " from " << j.first << " width " << j.second
);
} else {
BOOST_CHECK_MESSAGE (
- r > 252, "red=" << static_cast<int>(r) << " at x=" << x << " format " << i << " from " << j.first << " width " << j.second
+ r >= 252, "red=" << static_cast<int>(r) << " at (" << x << "," << y << ") format " << i << " from " << j.first << " width " << j.second
);
}
BOOST_CHECK_MESSAGE (
- g == 0, "green=" << static_cast<int>(g) << " at x=" << x << " format " << i << " from " << j.first << " width " << j.second
+ g == 0, "green=" << static_cast<int>(g) << " at (" << x << "," << y << ") format " << i << " from " << j.first << " width " << j.second
);
BOOST_CHECK_MESSAGE (
- b == 0, "blue=" << static_cast<int>(b) << " at x=" << x << " format " << i << " from " << j.first << " width " << j.second
+ b == 0, "blue=" << static_cast<int>(b) << " at (" << x << "," << y << ") format " << i << " from " << j.first << " width " << j.second
);
}
p += bar->stride()[0];