]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / showmanyc / char / 9533-1.cc
CommitLineData
34f4edf8
MM
1// { dg-require-fork "" }
2// { dg-require-mkfifo "" }
3
a945c346 4// Copyright (C) 2003-2024 Free Software Foundation, Inc.
2bc67e06
PC
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)
2bc67e06
PC
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/>.
2bc67e06
PC
20
21// 27.8.1.4 Overridden virtual functions
22
23#include <unistd.h>
24#include <signal.h>
25#include <fcntl.h>
26#include <sys/types.h>
27#include <sys/stat.h>
28#include <fstream>
debac9f4 29#include <cstdlib>
2bc67e06
PC
30#include <testsuite_hooks.h>
31
32// libstdc++/9533
33void test_01()
34{
35 using namespace std;
ea1ea21a 36 using namespace __gnu_test;
2bc67e06
PC
37 const char* name = "tmp_fifo1";
38
39 const int count = 10000;
40
41 signal(SIGPIPE, SIG_IGN);
42 unlink(name);
43
34f4edf8 44 if (0 != mkfifo(name, S_IRWXU))
2bc67e06
PC
45 {
46 VERIFY( false );
47 }
48
49 int fval = fork();
50 if (fval == -1)
51 {
52 unlink(name);
53 VERIFY( false );
54 }
55 else if (fval == 0)
56 {
57 filebuf ofbuf;
f196bdc4 58 ofbuf.open(name, ios_base::in|ios_base::out);
2bc67e06
PC
59 VERIFY( ofbuf.is_open() );
60 sleep(1);
61
62 for (int i = 0; i < count; ++i)
63 ofbuf.sputc(i % 100);
64
65 ofbuf.pubsync();
66 sleep(1);
67 ofbuf.close();
68 exit(0);
69 }
70
71 filebuf ifbuf;
72 ifbuf.open(name, ios_base::in);
73 VERIFY( ifbuf.is_open() );
74
75 for (int j = 0; j < count; ++j)
76 {
77 filebuf::int_type c1 = ifbuf.sbumpc();
78 VERIFY( c1 == j % 100 );
79 }
80
81 filebuf::int_type c6 = ifbuf.sbumpc();
82 VERIFY( c6 == filebuf::traits_type::eof() );
83
84 sleep(2);
85 ifbuf.close();
86
87 unlink(name);
88}
89
90int
91main()
92{
93 test_01();
94 return 0;
95}
96