Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / objects / wchar_t / 7.cc
blobf51b3de8d574c1529d0a69b1010874f5788d9fbc
1 // 2003-05-01 Petur Runolfsson <peturr02@ru.is>
3 // Copyright (C) 2003, 2005 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
21 // 27.3 Standard iostream objects
23 #include <fstream>
24 #include <iostream>
25 #include <unistd.h>
26 #include <signal.h>
27 #include <fcntl.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <testsuite_hooks.h>
32 // Check that wcout.flush() is called when last ios_base::Init is destroyed.
33 void test07()
35 using namespace std;
36 using namespace __gnu_test;
37 bool test __attribute__((unused)) = true;
39 const char* name = "tmp_fifo4";
41 signal(SIGPIPE, SIG_IGN);
43 unlink(name);
44 try_mkfifo(name, S_IRWXU);
45 semaphore s1;
47 int child = fork();
48 VERIFY( child != -1 );
50 if (child == 0)
52 wfilebuf fbout;
53 fbout.open(name, ios_base::out);
54 s1.wait();
55 wcout.rdbuf(&fbout);
56 fbout.sputc(L'a');
57 // NB: fbout is *not* destroyed here!
58 exit(0);
61 wfilebuf fbin;
62 fbin.open(name, ios_base::in);
63 s1.signal ();
64 wfilebuf::int_type c = fbin.sbumpc();
65 VERIFY( c != wfilebuf::traits_type::eof() );
66 VERIFY( c == wfilebuf::traits_type::to_int_type(L'a') );
68 fbin.close();
71 int
72 main()
74 test07();
75 return 0;