diff options
author | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-23 09:46:32 +0000 |
---|---|---|
committer | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-23 09:46:32 +0000 |
commit | 6a5cbbb861a3907403459541ec5255bca9f450e5 (patch) | |
tree | 6f3ca4abad019250dc6e533a9cf0ca16eef5ccfa /skia | |
parent | b845675230b224b5e2392649e9fb426003436768 (diff) | |
download | chromium_src-6a5cbbb861a3907403459541ec5255bca9f450e5.zip chromium_src-6a5cbbb861a3907403459541ec5255bca9f450e5.tar.gz chromium_src-6a5cbbb861a3907403459541ec5255bca9f450e5.tar.bz2 |
Disable VectorCanvasTest.PathEffects on Win
This is failing conistently on WebKit Win (deps)
BUG=129331
Review URL: https://chromiumcodereview.appspot.com/10423004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138459 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ext/vector_canvas_unittest.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/skia/ext/vector_canvas_unittest.cc b/skia/ext/vector_canvas_unittest.cc index ec512cc..8a84c19 100644 --- a/skia/ext/vector_canvas_unittest.cc +++ b/skia/ext/vector_canvas_unittest.cc @@ -718,7 +718,12 @@ TEST_F(VectorCanvasTest, DiagonalLines) { EXPECT_EQ(0., ProcessImage(FILE_PATH_LITERAL("se-nw"))); } -TEST_F(VectorCanvasTest, PathEffects) { +#if defined(OS_WIN) +#define MAYBE_PathEffects DISABLED_PathEffects +#else +#define MAYBE_PathEffects PathEffects +#endif +TEST_F(VectorCanvasTest, MAYBE_PathEffects) { { SkPaint paint; SkScalar intervals[] = { 1, 1 }; |