Lines Matching defs:output
122 << "End of output reached before match for regex \"" << TC.regex_str
128 void CheckCases(TestCaseList const& checks, std::stringstream& output) {
136 CheckCase(output, TC, not_checks);
181 // It works by parsing the CSV output to read the results.
196 void CheckResults(std::stringstream& output);
219 void ResultsChecker::CheckResults(std::stringstream& output) {
224 output.clear();
226 if (output.tellg() > start) output.seekg(start);
228 output.clear();
233 while (output.eof() == false) {
234 BM_CHECK(output.good());
235 std::getline(output, line);
440 // now that we know the output is as expected, we can dispatch
512 // Read the output back from the file, and delete the file.
514 std::string output = std::string((std::istreambuf_iterator<char>(tmp_stream)),
518 return output;