| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 #include "PathOpsExtendedTest.h" | 7 #include "PathOpsExtendedTest.h" |
| 8 #include "PathOpsThreadedCommon.h" | 8 #include "PathOpsThreadedCommon.h" |
| 9 #include "TestClassDef.h" |
| 9 | 10 |
| 10 static void testOpCubicsMain(PathOpsThreadState* data) | 11 static void testOpCubicsMain(PathOpsThreadState* data) { |
| 11 { | |
| 12 #if DEBUG_SHOW_TEST_NAME | 12 #if DEBUG_SHOW_TEST_NAME |
| 13 strncpy(DEBUG_FILENAME_STRING, "", DEBUG_FILENAME_STRING_LENGTH); | 13 strncpy(DEBUG_FILENAME_STRING, "", DEBUG_FILENAME_STRING_LENGTH); |
| 14 #endif | 14 #endif |
| 15 SkASSERT(data); | 15 SkASSERT(data); |
| 16 PathOpsThreadState& state = *data; | 16 PathOpsThreadState& state = *data; |
| 17 char pathStr[1024]; // gdb: set print elements 400 | 17 char pathStr[1024]; // gdb: set print elements 400 |
| 18 bool progress = state.fReporter->verbose(); // FIXME: break out into its own
parameter? | 18 bool progress = state.fReporter->verbose(); // FIXME: break out into its own
parameter? |
| 19 if (progress) { | 19 if (progress) { |
| 20 sk_bzero(pathStr, sizeof(pathStr)); | 20 sk_bzero(pathStr, sizeof(pathStr)); |
| 21 } | 21 } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 testThreadedPathOp(state.fReporter, pathA, pathB, (SkPathOp) op); | 60 testThreadedPathOp(state.fReporter, pathA, pathB, (SkPathOp) op); |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 } | 63 } |
| 64 } | 64 } |
| 65 } | 65 } |
| 66 } | 66 } |
| 67 } | 67 } |
| 68 } | 68 } |
| 69 | 69 |
| 70 static void PathOpsOpCubicsThreadedTest(skiatest::Reporter* reporter) | 70 DEF_TEST(PathOpsOpCubicsThreaded, reporter) { |
| 71 { | |
| 72 int threadCount = initializeTests(reporter, "cubicOp"); | 71 int threadCount = initializeTests(reporter, "cubicOp"); |
| 73 PathOpsThreadedTestRunner testRunner(reporter, threadCount); | 72 PathOpsThreadedTestRunner testRunner(reporter, threadCount); |
| 74 for (int a = 0; a < 6; ++a) { // outermost | 73 for (int a = 0; a < 6; ++a) { // outermost |
| 75 for (int b = a + 1; b < 7; ++b) { | 74 for (int b = a + 1; b < 7; ++b) { |
| 76 for (int c = 0 ; c < 6; ++c) { | 75 for (int c = 0 ; c < 6; ++c) { |
| 77 for (int d = c + 1; d < 7; ++d) { | 76 for (int d = c + 1; d < 7; ++d) { |
| 78 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreaded
Runnable, | 77 *testRunner.fRunnables.append() = SkNEW_ARGS(PathOpsThreaded
Runnable, |
| 79 (&testOpCubicsMain, a, b, c, d, &testRunner)); | 78 (&testOpCubicsMain, a, b, c, d, &testRunner)); |
| 80 } | 79 } |
| 81 } | 80 } |
| 82 if (!reporter->allowExtendedTest()) goto finish; | 81 if (!reporter->allowExtendedTest()) goto finish; |
| 83 } | 82 } |
| 84 } | 83 } |
| 85 finish: | 84 finish: |
| 86 testRunner.render(); | 85 testRunner.render(); |
| 87 } | 86 } |
| 88 | |
| 89 #include "TestClassDef.h" | |
| 90 DEFINE_TESTCLASS_SHORT(PathOpsOpCubicsThreadedTest) | |
| OLD | NEW |