Commit 7e4d34fd by Loren J. Rittle Committed by Loren J. Rittle

9507.cc: Allow lseek on fifo to succeed.

	* testsuite/27_io/basic_filebuf/open/char/9507.cc: Allow
	lseek on fifo to succeed.  Thus, check for consistent report.

From-SVN: r94003
parent a7a44441
2005-01-21 Loren J. Rittle <ljrittle@acm.org>
* testsuite/27_io/basic_filebuf/open/char/9507.cc: Allow
lseek on fifo to succeed. Thus, check for consistent report.
2005-01-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR libstdc++/19510
......
......@@ -54,8 +54,10 @@ void test_06()
std::ios_base::in
| std::ios_base::out
| std::ios_base::ate);
VERIFY( !fbuf.is_open() );
VERIFY( r == NULL );
if (r == NULL)
VERIFY( !fbuf.is_open() );
else
VERIFY( fbuf.is_open() );
}
int
......
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