Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / objects / wchar_t / 7.cc
blobd5ef3b78710c28efc46f72ce22d7d2ad9f48d719
1 // { dg-require-fork "" }
2 // { dg-require-mkfifo "" }
4 // 2003-05-01 Petur Runolfsson <peturr02@ru.is>
6 // Copyright (C) 2003-2013 Free Software Foundation, Inc.
7 //
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 3, or (at your option)
12 // any later version.
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 COPYING3. If not see
21 // <http://www.gnu.org/licenses/>.
23 // 27.3 Standard iostream objects
25 #include <fstream>
26 #include <iostream>
27 #include <cstdlib>
28 #include <unistd.h>
29 #include <signal.h>
30 #include <fcntl.h>
31 #include <sys/types.h>
32 #include <sys/stat.h>
34 // No asserts, avoid leaking the semaphore if a VERIFY fails.
35 #undef _GLIBCXX_ASSERT
37 #include <testsuite_hooks.h>
39 // Check that wcout.flush() is called when last ios_base::Init is destroyed.
40 bool test07()
42 using namespace std;
43 using namespace __gnu_test;
44 bool test __attribute__((unused)) = true;
46 const char* name = "tmp_fifo4";
48 signal(SIGPIPE, SIG_IGN);
50 unlink(name);
51 mkfifo(name, S_IRWXU);
52 semaphore s1;
54 int child = fork();
55 VERIFY( child != -1 );
57 if (child == 0)
59 wfilebuf fbout;
60 fbout.open(name, ios_base::out);
61 s1.wait();
62 wcout.rdbuf(&fbout);
63 fbout.sputc(L'a');
64 // NB: fbout is *not* destroyed here!
65 exit(0);
68 wfilebuf fbin;
69 fbin.open(name, ios_base::in);
70 s1.signal();
71 wfilebuf::int_type c = fbin.sbumpc();
72 VERIFY( c != wfilebuf::traits_type::eof() );
73 VERIFY( c == wfilebuf::traits_type::to_int_type(L'a') );
75 fbin.close();
77 return test;
80 int
81 main()
83 return !test07();