Merged trunk at revision 161680 into branch.
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / ws / wchar_t / 1.cc
blob8e60163c1482940255a0f5f95a2fe4f1250ff416
1 // Copyright (C) 2004, 2009, 2010 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.
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.
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/>.
18 // 27.6.1.4 standard basic_istream manipulators
20 #include <istream>
21 #include <sstream>
22 #include <stdexcept>
23 #include <testsuite_hooks.h>
25 void test01(void)
27 bool test __attribute__((unused)) = true;
29 const wchar_t str_lit01[] = L" venice ";
30 const std::wstring str01(L" santa barbara ");
31 std::wstring str02(str_lit01);
32 std::wstring str04;
33 std::wstring str05;
35 // template<_CharT, _Traits>
36 // basic_istream<_CharT, _Traits>& ws(basic_istream<_Char, _Traits>& is)
37 std::wistringstream iss01(str01);
38 std::wistringstream iss02(str01);
40 iss01 >> str04;
41 VERIFY( str04.size() != str01.size() );
42 VERIFY( str04 == L"santa" );
44 iss02 >> std::ws;
45 iss02 >> str05;
46 VERIFY( str05.size() != str01.size() );
47 VERIFY( str05 == L"santa" );
48 VERIFY( str05 == str04 );
50 iss01 >> str04;
51 VERIFY( str04.size() != str01.size() );
52 VERIFY( str04 == L"barbara" );
54 iss02 >> std::ws;
55 iss02 >> str05;
56 VERIFY( str05.size() != str01.size() );
57 VERIFY( str05 == L"barbara" );
58 VERIFY( str05 == str04 );
60 VERIFY( !iss01.fail() );
61 VERIFY( !iss02.fail() );
62 VERIFY( !iss01.eof() );
63 VERIFY( !iss02.eof() );
65 iss01 >> std::ws;
66 VERIFY( !iss01.fail() );
67 VERIFY( iss01.eof() );
70 int main()
72 test01();
73 return 0;