Lines Matching refs:os
58 std::auto_ptr< std::ofstream > os(new std::ofstream("Atffile"));
59 ATF_REQUIRE(*os);
61 (*os) << "Content-Type: application/X-atf-atffile; version=\"1\"\n\n";
62 return os;
69 std::ofstream os(name);
70 ATF_REQUIRE(os);
71 os.close();
522 std::auto_ptr< std::ofstream > os = new_atffile();
523 (*os) << "prop: test-suite = foo\n";
524 (*os) << "tp: tp-1\n";
525 (*os) << "conf: var1 = value1\n";
526 (*os) << "tp: tp-2\n";
527 (*os) << "tp: tp-3\n";
528 (*os) << "prop: prop1 = propvalue1\n";
529 (*os) << "conf: var2 = value2\n";
530 (*os).close();
552 std::auto_ptr< std::ofstream > os = new_atffile();
553 (*os) << "prop: test-suite = foo\n";
554 (*os) << "tp: foo\n";
555 (*os) << "tp-glob: *K*\n";
556 (*os) << "tp: bar\n";
557 (*os) << "tp-glob: t_*\n";
558 (*os).close();
579 std::auto_ptr< std::ofstream > os = new_atffile();
580 (*os).close();
592 std::auto_ptr< std::ofstream > os = new_atffile();
593 (*os) << "tp: foo\n";
594 (*os) << "tp: bar\n";
595 (*os) << "tp: baz\n";
596 (*os).close();