Lines Matching defs:TC
95 void CheckCase(std::stringstream& remaining_output, TestCase const& TC,
111 << "\n actual regex string \"" << TC.substituted_regex << "\""
114 if (TC.regex->Match(line)) return;
115 BM_CHECK(TC.match_rule != MR_Next)
116 << "Expected line \"" << line << "\" to match regex \"" << TC.regex_str
118 << "\n actual regex string \"" << TC.substituted_regex << "\""
122 << "End of output reached before match for regex \"" << TC.regex_str
124 << "\n actual regex string \"" << TC.substituted_regex << "\""
131 const auto& TC = checks[i];
132 if (TC.match_rule == MR_Not) {
133 not_checks.push_back(TC);
136 CheckCase(output, TC, not_checks);