Index: tests/GrDrawTargetTest.cpp |
diff --git a/tests/GrDrawTargetTest.cpp b/tests/GrDrawTargetTest.cpp |
index a82524e88c40b7bc670e5a0fbde25c3d03ea428b..f2bcdc415a629069b150f1b60001f853d3c5a21c 100644 |
--- a/tests/GrDrawTargetTest.cpp |
+++ b/tests/GrDrawTargetTest.cpp |
@@ -16,7 +16,8 @@ |
static void test_print(skiatest::Reporter*, const GrDrawTargetCaps* caps) { |
// This used to assert. |
- caps->print(); |
+ SkString result = caps->dump(); |
+ SkASSERT(!result.isEmpty()); |
caryclark
2013/11/14 12:52:16
For now, the only change necessary is:
// Disable
|
} |
static void TestGrDrawTarget(skiatest::Reporter* reporter, GrContextFactory* factory) { |