| Index: tests/PathOpsSimplifyTest.cpp
|
| diff --git a/tests/PathOpsSimplifyTest.cpp b/tests/PathOpsSimplifyTest.cpp
|
| index 5b763dee839de3f4eff991ac33cd9273763a51c6..165ee8d11d2a3fff389f10cacb86f6cfb3b52a2b 100644
|
| --- a/tests/PathOpsSimplifyTest.cpp
|
| +++ b/tests/PathOpsSimplifyTest.cpp
|
| @@ -4810,11 +4810,76 @@ static void testQuads65(skiatest::Reporter* reporter,const char* filename) {
|
| testSimplify(reporter, path, filename);
|
| }
|
|
|
| +static void fuzz864a(skiatest::Reporter* reporter,const char* filename) {
|
| + SkPath path;
|
| + path.moveTo(10, 90);
|
| + path.lineTo(10, 90);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 90);
|
| + path.close();
|
| + path.moveTo(10, 90);
|
| + path.lineTo(10, 90);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 90);
|
| + path.close();
|
| + path.moveTo(10, 90);
|
| + path.lineTo(110, 90);
|
| + path.lineTo(110, 30);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 90);
|
| + path.close();
|
| + path.moveTo(10, 30);
|
| + path.lineTo(32678, 30);
|
| + path.lineTo(32678, 30);
|
| + path.lineTo(10, 30);
|
| + path.close();
|
| + path.moveTo(10, 3.35545e+07f);
|
| + path.lineTo(110, 3.35545e+07f);
|
| + path.lineTo(110, 30);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 3.35545e+07f);
|
| + path.close();
|
| + path.moveTo(10, 315);
|
| + path.lineTo(110, 315);
|
| + path.lineTo(110, 255);
|
| + path.lineTo(10, 255);
|
| + path.lineTo(10, 315);
|
| + path.close();
|
| + path.moveTo(0, 60);
|
| + path.lineTo(100, 60);
|
| + path.lineTo(100, 0);
|
| + path.lineTo(0, 0);
|
| + path.lineTo(0, 60);
|
| + path.close();
|
| + path.moveTo(10, 90);
|
| + path.lineTo(110, 90);
|
| + path.lineTo(110, 30);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 90);
|
| + path.close();
|
| + path.moveTo(10, 3.35545e+07f);
|
| + path.lineTo(110, 3.35545e+07f);
|
| + path.lineTo(110, 30);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 3.35545e+07f);
|
| + path.close();
|
| + path.moveTo(10, 90);
|
| + path.lineTo(110, 90);
|
| + path.lineTo(110, 30);
|
| + path.lineTo(10, 30);
|
| + path.lineTo(10, 90);
|
| + path.close();
|
| + testSimplify(reporter, path, filename);
|
| +}
|
| +
|
| static void (*skipTest)(skiatest::Reporter* , const char* filename) = 0;
|
| static void (*firstTest)(skiatest::Reporter* , const char* filename) = 0;
|
| static void (*stopTest)(skiatest::Reporter* , const char* filename) = 0;
|
|
|
| static TestDesc tests[] = {
|
| + TEST(fuzz864a),
|
| TEST(testQuads65),
|
| TEST(testIssue3838_3),
|
| TEST(testIssue3838),
|
|
|