Commit 11e17422 by Paolo Carlini Committed by Paolo Carlini

filebuf_members.cc (test_05): Add test.

2002-01-28  Paolo Carlini  <pcarlini@unitus.it>
	    Charles Leggett <CGLeggett@lbl.gov>

	* testsuite/27_io/filebuf_members.cc (test_05): Add test.

Co-Authored-By: Charles Leggett <CGLeggett@lbl.gov>

From-SVN: r49297
parent 3bca17dd
2002-01-28 Paolo Carlini <pcarlini@unitus.it>
Charles Leggett <CGLeggett@lbl.gov>
* testsuite/27_io/filebuf_members.cc (test_05): Add test.
2002-01-28 Paolo Carlini <pcarlini@unitus.it>
* testsuite/27_io/ostream_inserter_arith.cc (test03):
Fix to deal correctly with both 32 bit and 64 bit architectures
......
......@@ -174,6 +174,22 @@ test_04()
exit(0);
}
// Charles Leggett <CGLeggett@lbl.gov>
void test_05()
{
bool test = true;
std::fstream scratch_file;
scratch_file.open("SCRATCH", std::ios::out);
scratch_file.close();
scratch_file.open("SCRATCH", std::ios::in);
scratch_file.close();
VERIFY(scratch_file);
}
int
main()
{
......@@ -181,6 +197,7 @@ main()
test_02();
test_03();
test_04();
test_05();
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment