1 // Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 2, or (at your option)
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING. If not, write to the Free
16 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // 27.8.1.3 filebuf member functions
20 // @require@ %-*.tst %-*.txt
21 // @diff@ %-*.tst %-*.txt
23 // various tests for filebuf::open() and filebuf::close() including
24 // the non-portable functionality in the libstdc++-v3 IO library
30 #include <sys/types.h>
32 #include <testsuite_hooks.h>
40 const char* name = "tmp_fifo3";
42 signal(SIGPIPE, SIG_IGN);
45 mkfifo(name, S_IRWXU);
48 VERIFY( child != -1 );
53 fbin.open(name, ios_base::in);
60 filebuf* ret = fb.open(name, ios_base::out | ios_base::trunc);
61 VERIFY( ret != NULL );
62 VERIFY( fb.is_open() );
68 VERIFY( ret == NULL );
69 VERIFY( !fb.is_open() );