OSDN Git Service

2004-01-11 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / imbue / wchar_t / 13582-2.cc
1 // 2004-01-11  Petur Runolfsson  <peturr02@ru.is>
2
3 // Copyright (C) 2004 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.
10
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.
15
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.
20
21 // 27.8.1.4 Overridden virtual functions
22
23 #include <fstream>
24 #include <locale>
25
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29
30 #include <testsuite_hooks.h>
31
32 // libstdc++/13582
33 void test01()
34 {
35   bool test __attribute__((unused)) = true;
36   using namespace std; 
37
38   locale loc_en(__gnu_test::try_named_locale("en_US"));
39   locale loc_fr(__gnu_test::try_named_locale("fr_FR"));
40
41   const char* name = "tmp_fifo_13582-2";
42   unlink(name);
43   mkfifo(name, S_IRWXU);
44   
45   int child = fork();
46   if (child == 0)
47     {
48       filebuf fbout;
49       fbout.open(name, ios_base::out);
50       fbout.sputn("12345", 5);
51       fbout.pubsync();
52       sleep(2);
53       fbout.close();
54       exit(0);
55     }
56
57   wfilebuf fbin;
58   fbin.open(name, ios_base::in);
59   sleep(1);
60   wfilebuf::int_type n = fbin.sbumpc();
61   VERIFY( n == L'1' );
62   fbin.pubimbue(loc_en);
63   n = fbin.sbumpc();
64   VERIFY( n == L'2' );
65   fbin.pubimbue(loc_fr);
66   n = fbin.sbumpc();
67   VERIFY( n == L'3' );
68   n = fbin.sbumpc();
69   VERIFY( n == L'4' );
70   n = fbin.sbumpc();
71   VERIFY( n == L'5' );
72   n = fbin.sbumpc();
73   VERIFY( n == wfilebuf::traits_type::eof() );
74 }
75
76 int main()
77 {
78   test01();
79   return 0;
80 }