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
parent b8456752
......@@ -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 };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment