Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

41 static void failOne(skiatest::Reporter* reporter, int index) {
64 REPORTER_ASSERT(reporter, !success);
65 REPORTER_ASSERT(reporter, result.isEmpty());
66 REPORTER_ASSERT(reporter, result.getFillType() == SkPath::kWinding_FillType);
67 reporter->bumpTestCount();
70 static void dontFailOne(skiatest::Reporter* reporter, int index) {
90 REPORTER_ASSERT(reporter, success);
91 REPORTER_ASSERT(reporter, result.getFillType() != SkPath::kWinding_FillType);
92 reporter->bumpTestCount();
95 static void fuzz_59(skiatest::Reporter* reporter, const char* filename) {
104 testSimplifyFuzz(reporter, path, filename);
107 static void fuzz_x1(skiatest::Reporter* reporter, const char* filename) {
114 testSimplify(reporter, path, filename);
117 static void fuzz_x2(skiatest::Reporter* reporter, const char* filename) {
124 testSimplify(reporter, path, filename);
127 static void fuzz763_1(skiatest::Reporter* reporter, const char* filename) {
155 testSimplifyFuzz(reporter, path, filename);
158 static void fuzz763_2(skiatest::Reporter* reporter, const char* filename) {
215 testSimplifyFuzz(reporter, path, filename);
218 #define TEST(test) test(reporter, #test)
220 DEF_TEST(PathOpsSimplifyFail, reporter) {
227 failOne(reporter, index);
230 dontFailOne(reporter, index);
236 DEF_TEST(PathOpsSimplifyFailOne, reporter) {
238 failOne(reporter, index);
241 DEF_TEST(PathOpsSimplifyDontFailOne, reporter) {
243 dontFailOne(reporter, index);