| Index: tests/PathOpsOpLoopThreadedTest.cpp
|
| diff --git a/tests/PathOpsOpLoopThreadedTest.cpp b/tests/PathOpsOpLoopThreadedTest.cpp
|
| old mode 100755
|
| new mode 100644
|
| index 3f6d081e5d287d685c9200806284859508c3ab75..7b4b7ce7cf488a1af1ec84f6a94d3206afa58870
|
| --- a/tests/PathOpsOpLoopThreadedTest.cpp
|
| +++ b/tests/PathOpsOpLoopThreadedTest.cpp
|
| @@ -99,8 +99,8 @@ DEF_TEST(PathOpsOpLoopsThreaded, reporter) {
|
| for (int b = a + 1; b < 7; ++b) {
|
| for (int c = 0 ; c < 6; ++c) {
|
| for (int d = c + 1; d < 7; ++d) {
|
| - *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreadedRunnable,
|
| - (&testOpLoopsMain, a, b, c, d, &testRunner));
|
| + *testRunner.fRunnables.append() =
|
| + new PathOpsThreadedRunnable(&testOpLoopsMain, a, b, c, d, &testRunner);
|
| }
|
| }
|
| if (!reporter->allowExtendedTest()) goto finish;
|
|
|