Lines Matching refs:m_os
121 ostream_ptr m_os;
129 m_os(open_outfile(p))
149 (*m_os) << "tp, " << timestamp << ", " << m_tpname << ", bogus, "
152 (*m_os) << "tp, " << timestamp << ", "<< m_tpname << ", failed\n";
154 (*m_os) << "tp, " << timestamp << ", "<< m_tpname << ", passed\n";
172 (*m_os) << "tc, " << format_tv(tv) << ", " << str << "\n";
192 ostream_ptr m_os;
205 (*m_os) << "Tests root: " << val << "\n\n";
228 (*m_os) << format_text(tp + " (" + to_string(m_curtp) +
232 (*m_os).flush();
243 (*m_os) << format_text_with_tag("BOGUS TEST PROGRAM: Cannot "
250 (*m_os) << "[" << format_tv(tv) << "s]\n\n";
251 (*m_os).flush();
261 (*m_os) << " " + tcname + ": ";
262 (*m_os).flush();
271 (*m_os) << "[" << format_tv(tv) << "s] ";
295 (*m_os) << str << '\n';
328 (*m_os) << format_text("Failed (bogus) test programs:")
330 (*m_os) << format_text_with_tag(join(m_failed_tps, ", "),
335 write_expected_failures(m_expected_failures_tcs, *m_os);
336 (*m_os) << "\n";
340 (*m_os) << format_text("Failed test cases:") << "\n";
341 (*m_os) << format_text_with_tag(join(m_failed_tcs, ", "),
345 (*m_os) << format_text("Summary for " + to_string(m_ntps) +
347 (*m_os) << format_text_with_tag(to_string(m_tcs_passed) +
350 (*m_os) << format_text_with_tag(to_string(m_tcs_failed) +
353 (*m_os) << format_text_with_tag(to_string(m_tcs_expected_failures) +
356 (*m_os) << format_text_with_tag(to_string(m_tcs_skipped) +
363 m_os(open_outfile(p))
380 ostream_ptr m_os;
418 (*m_os) << "<info class=\"" << what << "\">" << val << "</info>\n";
425 (*m_os) << "<tp id=\"" << attrval(tp) << "\">\n";
432 (*m_os) << "<failed>" << elemval(reason) << "</failed>\n";
433 (*m_os) << "<tp-time>" << format_tv(tv) << "</tp-time>";
434 (*m_os) << "</tp>\n";
440 (*m_os) << "<tc id=\"" << attrval(tcname) << "\">\n";
446 (*m_os) << "<so>" << elemval(line) << "</so>\n";
452 (*m_os) << "<se>" << elemval(line) << "</se>\n";
464 (*m_os) << "<" << state << ">" << elemval(reason)
467 (*m_os) << "<passed />\n";
469 (*m_os) << "<failed>" << elemval(reason) << "</failed>\n";
471 (*m_os) << "<skipped>" << elemval(reason) << "</skipped>\n";
474 (*m_os) << "<tc-time>" << format_tv(tv) << "</tc-time>";
475 (*m_os) << "</tc>\n";
481 (*m_os) << "</tests-results>\n";
486 m_os(open_outfile(p))
488 (*m_os) << "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n"