Lines Matching refs:m_os

124     ostream_ptr m_os;
132 m_os(open_outfile(p))
152 (*m_os) << "tp, " << timestamp << ", " << m_tpname << ", bogus, "
155 (*m_os) << "tp, " << timestamp << ", "<< m_tpname << ", failed\n";
157 (*m_os) << "tp, " << timestamp << ", "<< m_tpname << ", passed\n";
175 (*m_os) << "tc, " << format_tv(tv) << ", " << str << "\n";
195 ostream_ptr m_os;
208 (*m_os) << "Tests root: " << val << "\n\n";
231 (*m_os) << format_text(tp + " (" + to_string(m_curtp) +
235 (*m_os).flush();
246 (*m_os) << format_text_with_tag("BOGUS TEST PROGRAM: Cannot "
253 (*m_os) << "[" << format_tv(tv) << "s]\n\n";
254 (*m_os).flush();
264 (*m_os) << " " + tcname + ": ";
265 (*m_os).flush();
274 (*m_os) << "[" << format_tv(tv) << "s] ";
298 (*m_os) << str << '\n';
331 (*m_os) << format_text("Failed (bogus) test programs:")
333 (*m_os) << format_text_with_tag(join(m_failed_tps, ", "),
338 write_expected_failures(m_expected_failures_tcs, *m_os);
339 (*m_os) << "\n";
343 (*m_os) << format_text("Failed test cases:") << "\n";
344 (*m_os) << format_text_with_tag(join(m_failed_tcs, ", "),
348 (*m_os) << format_text("Summary for " + to_string(m_ntps) +
350 (*m_os) << format_text_with_tag(to_string(m_tcs_passed) +
353 (*m_os) << format_text_with_tag(to_string(m_tcs_failed) +
356 (*m_os) << format_text_with_tag(to_string(m_tcs_expected_failures) +
359 (*m_os) << format_text_with_tag(to_string(m_tcs_skipped) +
366 m_os(open_outfile(p))
383 ostream_ptr m_os;
421 (*m_os) << "<info class=\"" << what << "\">" << val << "</info>\n";
428 (*m_os) << "<tp id=\"" << attrval(tp) << "\">\n";
435 (*m_os) << "<failed>" << elemval(reason) << "</failed>\n";
436 (*m_os) << "<tp-time>" << format_tv(tv) << "</tp-time>";
437 (*m_os) << "</tp>\n";
443 (*m_os) << "<tc id=\"" << attrval(tcname) << "\">\n";
449 (*m_os) << "<so>" << elemval(line) << "</so>\n";
455 (*m_os) << "<se>" << elemval(line) << "</se>\n";
467 (*m_os) << "<" << state << ">" << elemval(reason)
470 (*m_os) << "<passed />\n";
472 (*m_os) << "<failed>" << elemval(reason) << "</failed>\n";
474 (*m_os) << "<skipped>" << elemval(reason) << "</skipped>\n";
477 (*m_os) << "<tc-time>" << format_tv(tv) << "</tc-time>";
478 (*m_os) << "</tc>\n";
484 (*m_os) << "</tests-results>\n";
489 m_os(open_outfile(p))
491 (*m_os) << "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n"