]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/close/char/9964.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / close / char / 9964.cc
CommitLineData
34f4edf8
MM
1// { dg-require-fork "" }
2// { dg-require-mkfifo "" }
3
aa118a03 4// Copyright (C) 2001-2014 Free Software Foundation, Inc.
23cac885
BK
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
748086b7 9// Free Software Foundation; either version 3, or (at your option)
23cac885
BK
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
748086b7
JJ
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
23cac885
BK
20
21// 27.8.1.3 filebuf member functions
22// @require@ %-*.tst %-*.txt
23// @diff@ %-*.tst %-*.txt
24
25// various tests for filebuf::open() and filebuf::close() including
26// the non-portable functionality in the libstdc++-v3 IO library
27
28#include <fstream>
debac9f4 29#include <cstdlib>
23cac885
BK
30#include <unistd.h>
31#include <signal.h>
32#include <fcntl.h>
33#include <sys/types.h>
34#include <sys/stat.h>
9339bda8
PC
35
36// No asserts, avoid leaking the semaphores if a VERIFY fails.
37#undef _GLIBCXX_ASSERT
38
23cac885
BK
39#include <testsuite_hooks.h>
40
41// libstdc++/9964
9339bda8 42bool test_07()
23cac885
BK
43{
44 using namespace std;
ea1ea21a 45 using namespace __gnu_test;
11f10e6b 46 bool test __attribute__((unused)) = true;
8f1032c1 47 semaphore s1, s2;
23cac885
BK
48
49 const char* name = "tmp_fifo3";
50
51 signal(SIGPIPE, SIG_IGN);
52
53 unlink(name);
34f4edf8 54 mkfifo(name, S_IRWXU);
23cac885
BK
55
56 int child = fork();
57 VERIFY( child != -1 );
58
59 if (child == 0)
60 {
61 filebuf fbin;
62 fbin.open(name, ios_base::in);
9339bda8 63 s1.wait();
23cac885 64 fbin.close();
9339bda8 65 s2.signal();
23cac885
BK
66 exit(0);
67 }
68
69 filebuf fb;
6a734d61 70 filebuf* ret = fb.open(name, ios_base::in | ios_base::out);
8fc81078 71 VERIFY( ret != 0 );
23cac885 72 VERIFY( fb.is_open() );
9339bda8
PC
73 s1.signal();
74 s2.wait();
23cac885
BK
75 fb.sputc('a');
76
77 ret = fb.close();
8fc81078 78 VERIFY( ret != 0 );
23cac885 79 VERIFY( !fb.is_open() );
9339bda8
PC
80
81 return test;
23cac885
BK
82}
83
84int
85main()
86{
9339bda8 87 return !test_07();
23cac885 88}