| Index: tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp
|
| diff --git a/tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp b/tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp
|
| old mode 100755
|
| new mode 100644
|
| index f8e9a6e3dc3b549cd07b35817d1ae635e30ce4a4..f2c1dfc990ffee746827250ad8304d1029863430
|
| --- a/tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp
|
| +++ b/tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp
|
| @@ -82,8 +82,8 @@ DEF_TEST(PathOpsSimplifyQuadralateralsThreaded, reporter) {
|
| for (int b = a ; b < 16; ++b) {
|
| for (int c = b ; c < 16; ++c) {
|
| for (int d = c; d < 16; ++d) {
|
| - *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreadedRunnable,
|
| - (&testSimplifyQuadralateralsMain, a, b, c, d, &testRunner));
|
| + *testRunner.fRunnables.append() = new PathOpsThreadedRunnable(
|
| + &testSimplifyQuadralateralsMain, a, b, c, d, &testRunner);
|
| }
|
| if (!reporter->allowExtendedTest()) goto finish;
|
| }
|
|
|