Index: tests/PathOpsSimplifyFailTest.cpp |
diff --git a/tests/PathOpsSimplifyFailTest.cpp b/tests/PathOpsSimplifyFailTest.cpp |
index 2a4b0a00252ff97ae176f3128fb0658fc353001b..53e33bca8f2d2d439847e42afcda57fcc204522b 100644 |
--- a/tests/PathOpsSimplifyFailTest.cpp |
+++ b/tests/PathOpsSimplifyFailTest.cpp |
@@ -86,10 +86,7 @@ static void dontFailOne(skiatest::Reporter* reporter, int index) { |
SkPath result; |
result.setFillType(SkPath::kWinding_FillType); |
bool success = Simplify(path, &result); |
- // linux 32 debug fails test 13 because the quad is not treated as linear |
- // there's no error in the math that I can find -- it looks like a processor |
- // or compiler bug -- so for now, allow either to work |
- REPORTER_ASSERT(reporter, success || index == 13); |
+ REPORTER_ASSERT(reporter, success); |
REPORTER_ASSERT(reporter, result.getFillType() != SkPath::kWinding_FillType); |
reporter->bumpTestCount(); |
} |