OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [testsuite/] [27_io/] [objects/] [wchar_t/] [7.cc] - Blame information for rev 19

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 19 jlechner
// { dg-require-fork "" }
2
// { dg-require-mkfifo "" }
3
 
4
// 2003-05-01 Petur Runolfsson  <peturr02@ru.is>
5
 
6
// Copyright (C) 2003, 2005 Free Software Foundation, Inc.
7
//
8
// This file is part of the GNU ISO C++ Library.  This library is free
9
// software; you can redistribute it and/or modify it under the
10
// terms of the GNU General Public License as published by the
11
// Free Software Foundation; either version 2, or (at your option)
12
// any later version.
13
 
14
// This library is distributed in the hope that it will be useful,
15
// but WITHOUT ANY WARRANTY; without even the implied warranty of
16
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
// GNU General Public License for more details.
18
 
19
// You should have received a copy of the GNU General Public License along
20
// with this library; see the file COPYING.  If not, write to the Free
21
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22
// USA.
23
 
24
// 27.3 Standard iostream objects
25
 
26
#include <fstream>
27
#include <iostream>
28
#include <unistd.h>
29
#include <signal.h>
30
#include <fcntl.h>
31
#include <sys/types.h>
32
#include <sys/stat.h>
33
#include <testsuite_hooks.h>
34
 
35
// Check that wcout.flush() is called when last ios_base::Init is destroyed.
36
void test07()
37
{
38
  using namespace std;
39
  using namespace __gnu_test;
40
  bool test __attribute__((unused)) = true;
41
 
42
  const char* name = "tmp_fifo4";
43
 
44
  signal(SIGPIPE, SIG_IGN);
45
 
46
  unlink(name);
47
  mkfifo(name, S_IRWXU);
48
  semaphore s1;
49
 
50
  int child = fork();
51
  VERIFY( child != -1 );
52
 
53
  if (child == 0)
54
    {
55
      wfilebuf fbout;
56
      fbout.open(name, ios_base::out);
57
      s1.wait();
58
      wcout.rdbuf(&fbout);
59
      fbout.sputc(L'a');
60
      // NB: fbout is *not* destroyed here!
61
      exit(0);
62
    }
63
 
64
  wfilebuf fbin;
65
  fbin.open(name, ios_base::in);
66
  s1.signal ();
67
  wfilebuf::int_type c = fbin.sbumpc();
68
  VERIFY( c != wfilebuf::traits_type::eof() );
69
  VERIFY( c == wfilebuf::traits_type::to_int_type(L'a') );
70
 
71
  fbin.close();
72
}
73
 
74
int
75
main()
76
{
77
  test07();
78
  return 0;
79
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.