| Index: tests/RecordDrawTest.cpp
|
| diff --git a/tests/RecordDrawTest.cpp b/tests/RecordDrawTest.cpp
|
| index b9ab2dce258abb2a7a56f19be33ca938a4f7774e..50c1d09d2c4f54069bc41d7e3a63f2a9c5b6b0db 100644
|
| --- a/tests/RecordDrawTest.cpp
|
| +++ b/tests/RecordDrawTest.cpp
|
| @@ -137,6 +137,11 @@ DEF_TEST(RecordDraw_BBH, r) {
|
| for (int i = 0; i < bbh.entries.count(); i++) {
|
| REPORTER_ASSERT(r, bbh.entries[i].data == (uintptr_t)i);
|
|
|
| + if (bbh.entries[i].bounds != SkRect::MakeWH(400, 480)) {
|
| + SkRect bounds = bbh.entries[i].bounds;
|
| + SkDebugf("Expected 0,0,400,480, got %f %f %f %f\n",
|
| + bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
|
| + }
|
| REPORTER_ASSERT(r, bbh.entries[i].bounds == SkRect::MakeWH(400, 480));
|
| }
|
| }
|
|
|