| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 "SkIntersections.h" | 7 #include "SkIntersections.h" |
| 8 #include "SkTDArray.h" | 8 #include "SkTDArray.h" |
| 9 #include "Test.h" | 9 #include "Test.h" |
| 10 | 10 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 | 69 |
| 70 DEF_TEST(PathOpsThreeWay, reporter) { | 70 DEF_TEST(PathOpsThreeWay, reporter) { |
| 71 for (int index = 0; index < testSetsCount; ++index) { | 71 for (int index = 0; index < testSetsCount; ++index) { |
| 72 testSetTest(reporter, index); | 72 testSetTest(reporter, index); |
| 73 reporter->bumpTestCount(); | 73 reporter->bumpTestCount(); |
| 74 } | 74 } |
| 75 } | 75 } |
| 76 | 76 |
| 77 DEF_TEST(PathOpsThreeWayOneOff, reporter) { | 77 DEF_TEST(PathOpsThreeWayOneOff, reporter) { |
| 78 int index = 1; | 78 int index = 0; |
| 79 testSetTest(reporter, index); | 79 testSetTest(reporter, index); |
| 80 } | 80 } |
| OLD | NEW |