Index: tests/RecordDrawTest.cpp |
diff --git a/tests/RecordDrawTest.cpp b/tests/RecordDrawTest.cpp |
index 48981ef0a208a1554810833f0c04ed59acc5cc4b..2b6a0f9fc8378b7fdcc8bdd1cc7efce737dd36a7 100644 |
--- a/tests/RecordDrawTest.cpp |
+++ b/tests/RecordDrawTest.cpp |
@@ -202,6 +202,7 @@ DEF_TEST(RecordDraw_PartialStartStop, r) { |
REPORTER_ASSERT(r, drawRect->rect == r2); |
} |
+#if 0 |
mtklein
2014/12/02 16:29:28
Sure, we can remove this now, but if we do there's
|
// Check that clears are converted to drawRects |
DEF_TEST(RecordDraw_PartialClear, r) { |
static const int kWidth = 10, kHeight = 10; |
@@ -225,6 +226,7 @@ DEF_TEST(RecordDraw_PartialClear, r) { |
REPORTER_ASSERT(r, drawRect->rect == rect); |
REPORTER_ASSERT(r, drawRect->paint.getColor() == SK_ColorRED); |
} |
+#endif |
// A regression test for crbug.com/415468 and skbug.com/2957. |
// |