Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / ws / char / 1.cc
1 // 1999-07-22 bkoz
2
3 // Copyright (C) 1994-2013 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3.  If not see
18 // <http://www.gnu.org/licenses/>.
19
20 // 27.6.1.4 standard basic_istream manipulators
21
22 #include <istream>
23 #include <sstream>
24 #include <stdexcept>
25 #include <testsuite_hooks.h>
26
27 void test01(void)
28 {
29   bool test __attribute__((unused)) = true;
30
31   const char str_lit01[] = "  venice ";
32   const std::string str01(" santa barbara ");
33   std::string str02(str_lit01);
34   std::string str04;
35   std::string str05;
36
37   // template<_CharT, _Traits>
38   //  basic_istream<_CharT, _Traits>& ws(basic_istream<_Char, _Traits>& is)
39   std::istringstream iss01(str01);
40   std::istringstream iss02(str01);
41   
42   iss01 >> str04;
43   VERIFY( str04.size() != str01.size() );
44   VERIFY( str04 == "santa" );
45
46   iss02 >> std::ws;
47   iss02 >> str05;
48   VERIFY( str05.size() != str01.size() );
49   VERIFY( str05 == "santa" );
50   VERIFY( str05 == str04 );
51
52   iss01 >> str04;
53   VERIFY( str04.size() != str01.size() );
54   VERIFY( str04 == "barbara" );
55   
56   iss02 >> std::ws;
57   iss02 >> str05;
58   VERIFY( str05.size() != str01.size() );
59   VERIFY( str05 == "barbara" );
60   VERIFY( str05 == str04 );
61
62   VERIFY( !iss01.fail() );
63   VERIFY( !iss02.fail() );
64   VERIFY( !iss01.eof() );
65   VERIFY( !iss02.eof() );
66
67   iss01 >> std::ws;
68   VERIFY( !iss01.fail() );
69   VERIFY( iss01.eof() );
70 }
71
72 int main()
73
74   test01();
75   return 0;
76 }