Index: tests/PathOpsSimplifyDegenerateThreadedTest.cpp |
diff --git a/tests/PathOpsSimplifyDegenerateThreadedTest.cpp b/tests/PathOpsSimplifyDegenerateThreadedTest.cpp |
old mode 100755 |
new mode 100644 |
index 8e8c58bf44d6391b6524380fba09b6d684f55fe2..99a54d8fb62cb290191354db3d95af55051bcca7 |
--- a/tests/PathOpsSimplifyDegenerateThreadedTest.cpp |
+++ b/tests/PathOpsSimplifyDegenerateThreadedTest.cpp |
@@ -80,9 +80,8 @@ DEF_TEST(PathOpsSimplifyDegeneratesThreaded, reporter) { |
int cx = c & 0x03; |
int cy = c >> 2; |
bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax); |
- *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreadedRunnable, |
- (&testSimplifyDegeneratesMain, a, b, c, abcIsATriangle, |
- &testRunner)); |
+ *testRunner.fRunnables.append() = new PathOpsThreadedRunnable( |
+ &testSimplifyDegeneratesMain, a, b, c, abcIsATriangle, &testRunner); |
} |
if (!reporter->allowExtendedTest()) goto finish; |
} |