OSDN Git Service

* testsuite/27_io/basic_filebuf/close/char/9964.cc (test_07):
[pf3gnuchains/gcc-fork.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   bool test = true;
39
40   const char* name = "tmp_fifo3";
41
42   signal(SIGPIPE, SIG_IGN);
43
44   unlink(name);  
45   mkfifo(name, S_IRWXU);
46   
47   int child = fork();
48   VERIFY( child != -1 );
49
50   if (child == 0)
51     {
52       filebuf fbin;
53       fbin.open(name, ios_base::in);
54       sleep(2);
55       fbin.close();
56       exit(0);
57     }
58   
59   filebuf fb;
60   sleep(1);
61   filebuf* ret = fb.open(name, ios_base::out | ios_base::trunc);
62   VERIFY( ret != NULL );
63   VERIFY( fb.is_open() );
64
65   sleep(3);
66   fb.sputc('a');
67
68   ret = fb.close();
69   VERIFY( ret == NULL );
70   VERIFY( !fb.is_open() );
71 }
72
73 int
74 main()
75 {
76   test_07();
77   return 0;
78 }