| Index: tests/PathOpsSimplifyTrianglesThreadedTest.cpp
|
| diff --git a/tests/PathOpsSimplifyTrianglesThreadedTest.cpp b/tests/PathOpsSimplifyTrianglesThreadedTest.cpp
|
| old mode 100755
|
| new mode 100644
|
| index ee0ca2bcaab9ea02d2a224bd7f39688d4bec0a60..8d8feee143e1d0c8f8a0e5d67f0e6e23424bc302
|
| --- a/tests/PathOpsSimplifyTrianglesThreadedTest.cpp
|
| +++ b/tests/PathOpsSimplifyTrianglesThreadedTest.cpp
|
| @@ -90,8 +90,8 @@ DEF_TEST(PathOpsSimplifyTrianglesThreaded, reporter) {
|
| if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
|
| continue;
|
| }
|
| - *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreadedRunnable,
|
| - (&testSimplifyTrianglesMain, a, b, c, 0, &testRunner));
|
| + *testRunner.fRunnables.append() = new PathOpsThreadedRunnable(
|
| + &testSimplifyTrianglesMain, a, b, c, 0, &testRunner);
|
| }
|
| if (!reporter->allowExtendedTest()) goto finish;
|
| }
|
|
|