basic_file_stdio.cc (__gnu_internal::fopen_mode): New function.
[platform/upstream/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / close / char / 9964.cc
1 // Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library.  This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 2, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING.  If not, write to the Free
16 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 // USA.
18
19 // 27.8.1.3 filebuf member functions
20 // @require@ %-*.tst %-*.txt
21 // @diff@ %-*.tst %-*.txt
22
23 // various tests for filebuf::open() and filebuf::close() including
24 // the non-portable functionality in the libstdc++-v3 IO library
25
26 #include <fstream>
27 #include <unistd.h>
28 #include <signal.h>
29 #include <fcntl.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <testsuite_hooks.h>
33
34 // libstdc++/9964
35 void test_07()
36 {
37   using namespace std;
38   using namespace __gnu_test;
39   bool test __attribute__((unused)) = true;
40
41   const char* name = "tmp_fifo3";
42
43   signal(SIGPIPE, SIG_IGN);
44
45   unlink(name);  
46   try_mkfifo(name, S_IRWXU);
47   
48   int child = fork();
49   VERIFY( child != -1 );
50
51   if (child == 0)
52     {
53       filebuf fbin;
54       fbin.open(name, ios_base::in);
55       sleep(2);
56       fbin.close();
57       exit(0);
58     }
59   
60   filebuf fb;
61   sleep(1);
62   filebuf* ret = fb.open(name, ios_base::in | ios_base::out);
63   VERIFY( ret != NULL );
64   VERIFY( fb.is_open() );
65
66   sleep(3);
67   fb.sputc('a');
68
69   ret = fb.close();
70   VERIFY( ret != NULL );
71   VERIFY( !fb.is_open() );
72 }
73
74 int
75 main()
76 {
77   test_07();
78   return 0;
79 }