Lines Matching defs:test
206 for (auto test : skiatest::TestRegistry::Range()) {
207 SkDebugf("test %s\n", test.fName);
208 tests.call<void>("push", std::string(test.fName));
214 for (auto test : skiatest::TestRegistry::Range()) {
215 if (name == test.fName) {
217 return test;
246 auto test = getTestWithName(name, &ok);
248 SkDebugf("Could not find test with name %s\n", name.c_str());
252 if (test.fNeedsGpu) {
255 test.modifyGrContextOptions(&grOpts);
256 test.run(&reporter, grOpts);
262 test.run(&reporter, grOpts);
286 void RunWithGPUTestContexts(GrContextTestFn* test, GrContextTypeFilterFn* contextTypeFilter,
302 (*test)(reporter, ctxInfo);