1 // { dg-require-fork "" }
2 // { dg-require-mkfifo "" }
4 // 2001-05-21 Benjamin Kosnik <bkoz@redhat.com>
6 // Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
8 // This file is part of the GNU ISO C++ Library. This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 2, or (at your option)
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 // GNU General Public License for more details.
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING. If not, write to the Free
21 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
24 // 27.8.1.4 Overridden virtual functions
30 #include <sys/types.h>
32 #include <testsuite_hooks.h>
34 class UnderBuf
: public std::filebuf
39 { return underflow(); }
43 { return showmanyc(); }
47 // filebuf::underflow drops characters.
51 using namespace __gnu_test
;
52 bool test
__attribute__((unused
)) = true;
54 const char* name
= "tmp_fifo1";
56 signal(SIGPIPE
, SIG_IGN
);
59 if (0 != mkfifo(name
, S_IRWXU
))
74 fbout
.open(name
, ios_base::in
|ios_base::out
);
75 VERIFY ( fbout
.is_open() );
76 fbout
.sputn("0123456789", 10);
84 fb
.open(name
, ios_base::in
);
87 streamsize n
= fb
.pub_showmanyc();
93 UnderBuf::int_type c
= fb
.pub_underflow();
94 VERIFY( c
!= UnderBuf::traits_type::eof() );