diff options
author | Mike Klein <mtklein@google.com> | 2014-08-28 07:15:32 -0400 |
---|---|---|
committer | Mike Klein <mtklein@google.com> | 2014-08-28 07:15:32 -0400 |
commit | 5ff913269377d12bf78be70d6a74607eda2ee05d (patch) | |
tree | d422ced394e71f8804053abbae53aa5b6e8932d1 /tests | |
parent | b2f7fce9e034c3b6749e75a129e7836df3529706 (diff) |
More test debugging. Too close for decimal. I'm switching to hex.
BUG=skia:
Review URL: https://codereview.chromium.org/515753005
Diffstat (limited to 'tests')
-rw-r--r-- | tests/RecordDrawTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/RecordDrawTest.cpp b/tests/RecordDrawTest.cpp index 50c1d09d2c..02eb2544e6 100644 --- a/tests/RecordDrawTest.cpp +++ b/tests/RecordDrawTest.cpp @@ -139,7 +139,8 @@ DEF_TEST(RecordDraw_BBH, r) { 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", + SkDebugf("Expected %x %x %x %x, got %x %x %x %x\n", + 0.0f, 0.0f, 400.0f, 480.0f, bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom); } REPORTER_ASSERT(r, bbh.entries[i].bounds == SkRect::MakeWH(400, 480)); |