1 // { dg-require-fork "" }
2 // { dg-require-mkfifo "" }
4 // 2003-04-30 Petur Runolfsson <peturr02@ru.is>
6 // Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009
7 // Free Software Foundation, Inc.
9 // This file is part of the GNU ISO C++ Library. This library is free
10 // software; you can redistribute it and/or modify it under the
11 // terms of the GNU General Public License as published by the
12 // Free Software Foundation; either version 3, or (at your option)
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License along
21 // with this library; see the file COPYING3. If not see
22 // <http://www.gnu.org/licenses/>.
24 // No asserts, avoid leaking the semaphores if a VERIFY fails.
25 #undef _GLIBCXX_ASSERT
27 #include <testsuite_hooks.h>
34 #include <sys/types.h>
37 // Check that wcin.rdbuf()->sputbackc() puts characters back to stdin.
38 // If wcin.rdbuf() is a filebuf, this succeeds when stdin is a regular
39 // file, but fails otherwise, hence the named fifo.
43 using namespace __gnu_test
;
45 bool test
__attribute__((unused
)) = true;
47 const char* name
= "tmp_fifo5";
49 signal(SIGPIPE
, SIG_IGN
);
52 mkfifo(name
, S_IRWXU
);
56 VERIFY( child
!= -1 );
60 FILE* file
= fopen(name
, "w");
61 fputs("Whatever\n", file
);
70 VERIFY( freopen(name
, "r", stdin
) );
73 wint_t c1
= fgetwc(stdin
);
75 wint_t c2
= wcin
.rdbuf()->sputbackc(L
'a');
79 wint_t c3
= fgetwc(stdin
);
82 wint_t c4
= ungetwc(L
'b', stdin
);
86 wint_t c5
= wcin
.rdbuf()->sgetc();