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
This commit is contained in:
Paolo Carlini 2002-01-28 21:07:57 +01:00 committed by Paolo Carlini
parent 3bca17dda3
commit 11e174221b
2 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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):

View File

@ -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;
}