Lines Matching refs:reporter
16 DEF_GRAPHITE_TEST_FOR_CONTEXTS(ProgramCacheTest, reporter, context) {
21 REPORTER_ASSERT(reporter, cache->count() == 0);
28 REPORTER_ASSERT(reporter, pi1->id() != ProgramCache::kInvalidProgramID);
29 REPORTER_ASSERT(reporter, pi1->combo() == c1);
31 REPORTER_ASSERT(reporter, lookup->id() == pi1->id());
33 REPORTER_ASSERT(reporter, cache->count() == 1);
40 REPORTER_ASSERT(reporter, pi2->id() != ProgramCache::kInvalidProgramID);
41 REPORTER_ASSERT(reporter, pi2->id() == pi1->id());
42 REPORTER_ASSERT(reporter, pi2->combo() == c2);
44 REPORTER_ASSERT(reporter, lookup->id() == pi2->id());
46 REPORTER_ASSERT(reporter, cache->count() == 1);
56 REPORTER_ASSERT(reporter, pi3->id() != ProgramCache::kInvalidProgramID);
57 REPORTER_ASSERT(reporter, pi3->id() != pi1->id());
58 REPORTER_ASSERT(reporter, pi3->combo() == c3);
60 REPORTER_ASSERT(reporter, lookup->id() == pi3->id());
62 REPORTER_ASSERT(reporter, cache->count() == 2);