]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/basic_istream/get/wchar_t/2.cc
bcb9ca9f4232d7d6e09dada185a5acd4aa233be4
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / get / wchar_t / 2.cc
1 // Copyright (C) 2004-2018 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 3, 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 COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // 27.6.1.3 unformatted input functions
19 // @require@ %-*.tst %-*.txt
20 // @diff@ %-*.tst %-*.txt
21
22 #include <istream>
23 #include <sstream>
24 #include <fstream>
25 #include <testsuite_hooks.h>
26
27 //libstdc++/92: Bug in istream::get(basic_streambuf*)
28 // bug reported by bgarcia@laurelnetworks.com
29 // http://gcc.gnu.org/ml/libstdc++-prs/2000-q3/msg00041.html
30 void
31 test07()
32 {
33 const char* tfn = "istream_unformatted-1.txt";
34 std::wifstream infile;
35 infile.open(tfn);
36 VERIFY( !(!infile) );
37 while (infile)
38 {
39 std::wstring line;
40 std::wostringstream line_ss;
41 while (infile.peek() == L'\n')
42 infile.get();
43 infile.get(*(line_ss.rdbuf()));
44 line = line_ss.str();
45 VERIFY( line == L"1234567890" || line == L"" );
46 }
47 }
48
49 int
50 main()
51 {
52 test07();
53 return 0;
54 }