]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/close/char/4879.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / close / char / 4879.cc
CommitLineData
34f4edf8
MM
1// { dg-require-fork "" }
2// { dg-require-mkfifo "" }
3
a945c346 4// Copyright (C) 2001-2024 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>
29#include <iostream>
debac9f4 30#include <cstdlib>
23cac885
BK
31#include <unistd.h>
32#include <signal.h>
33#include <fcntl.h>
34#include <sys/types.h>
35#include <sys/stat.h>
9339bda8 36
23cac885
BK
37#include <testsuite_hooks.h>
38
39// libstdc++/2913, libstdc++/4879
40// John Fardo <jfardo@laurelnetworks.com>, Brad Garcia <garsh@attbi.com>
9339bda8 41bool
23cac885
BK
42test_04()
43{
ea1ea21a
MM
44 using namespace __gnu_test;
45
118c8424 46 bool test = true;
23cac885 47 const char* name = "tmp_fifo1";
8f1032c1
MM
48 semaphore s1, s2;
49
23cac885
BK
50 signal(SIGPIPE, SIG_IGN);
51
52 unlink(name);
34f4edf8 53 if (0 != mkfifo(name, S_IRWXU))
23cac885
BK
54 {
55 std::cerr << "failed to create fifo" << std::endl;
56 exit(-1);
57 }
58
59 int fval = fork();
60 if (fval == -1)
61 {
62 std::cerr << "failed to fork" << std::endl;
63 unlink(name);
9339bda8 64 return false;
23cac885
BK
65 }
66 else if (fval == 0)
67 {
68 std::ifstream ifs(name);
9339bda8 69 s1.wait();
23cac885 70 ifs.close();
9339bda8 71 s2.signal();
23cac885
BK
72 exit(0);
73 }
74
75 std::ofstream ofs(name);
9339bda8
PC
76 s1.signal();
77 s2.wait();
23cac885
BK
78 ofs.put('t');
79
80 /*
81 * ISO/IED 14882:1998(E) 27.8.1.10.4
82 *
83 * void close();
84 *
85 * Effects: Calls rdbuf()->close() and, if that function fails
86 * (returns a null pointer), calls setstate(failbit)...
87 */
88 ofs.close();
89 if (!(ofs.rdstate() & std::ios::failbit))
90 {
91 test = false;
23cac885
BK
92 }
93
94 unlink(name);
9339bda8
PC
95
96 return test;
23cac885
BK
97}
98
99int
100main()
101{
9339bda8 102 return !test_04();
23cac885 103}