]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/basic_istream/extractors_character/wchar_t/11095-i.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / extractors_character / wchar_t / 11095-i.cc
1 // Copyright (C) 2004-2019 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.2.3 character extractors
19
20 #include <istream>
21 #include <sstream>
22 #include <testsuite_hooks.h>
23
24 // libstdc++/11095
25 // operator>>(basic_istream&, _CharT*)
26 void test01()
27 {
28 const std::wstring str_01(L"Consoli ");
29
30 std::wstringbuf isbuf_01(str_01, std::ios_base::in);
31 std::wistream is_01(&isbuf_01);
32
33 std::ios_base::iostate state1, state2;
34
35 wchar_t array1[10];
36 typedef std::wios::traits_type ctraits_type;
37
38 is_01.width(-60);
39 state1 = is_01.rdstate();
40 is_01 >> array1;
41 state2 = is_01.rdstate();
42 VERIFY( state1 == state2 );
43 VERIFY( !ctraits_type::compare(array1, L"Consoli", 7) );
44 }
45
46 int main()
47 {
48 test01();
49 return 0;
50 }
51