Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: Source/platform/graphics/GraphicsContextTest.cpp

Issue 1129173006: Enable slimming paint by default (for trybots only) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Tue Jun 9 10:33:43 PDT 2015 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/platform/graphics/GraphicsContextTest.cpp
diff --git a/Source/platform/graphics/GraphicsContextTest.cpp b/Source/platform/graphics/GraphicsContextTest.cpp
index 414fce61ad5643acedcf835a339de138402b40bb..abb7041f17a3629e0631ce7d028be5009f116d80 100644
--- a/Source/platform/graphics/GraphicsContextTest.cpp
+++ b/Source/platform/graphics/GraphicsContextTest.cpp
@@ -208,7 +208,7 @@ TEST(GraphicsContextTest, UnboundedDrawsAreClipped)
#define DISPATCH1(c1, c2, op, param1) do { c1->op(param1); c2->op(param1); } while (0);
#define DISPATCH2(c1, c2, op, param1, param2) do { c1->op(param1, param2); c2->op(param1, param2); } while (0);
-TEST(GraphicsContextTest, RecordingTotalMatrix)
+TEST(GraphicsContextTest, DISABLED_RecordingTotalMatrix)
{
if (RuntimeEnabledFeatures::slimmingPaintEnabled()) {
// GraphicsContext::getCTM() won't do the right thing in Slimming Paint, so just skip this test.
@@ -247,7 +247,7 @@ TEST(GraphicsContextTest, RecordingTotalMatrix)
EXPECT_EQ(context->getCTM(), controlContext->getCTM());
}
-TEST(GraphicsContextTest, RecordingCanvas)
+TEST(GraphicsContextTest, DISABLED_RecordingCanvas)
{
if (RuntimeEnabledFeatures::slimmingPaintEnabled()) {
// This test doesn't make any sense in slimming paint as you can't begin recording within an existing recording,

Powered by Google App Engine
This is Rietveld 408576698