Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / testsuite / 27_io / basic_istringstream / str / wchar_t / 1.cc
blobd0b90545da142eb6ff87213052fd176157f8655c
1 // Copyright (C) 2004 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 2, 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 COPYING. If not, write to the Free
16 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 // USA.
19 // 27.7.2.2 member functions (istringstream_members)
21 #include <sstream>
22 #include <testsuite_hooks.h>
24 void test01()
26 bool test __attribute__((unused)) = true;
27 std::wistringstream is01;
28 const std::wstring str00;
29 const std::wstring str01 = L"123";
30 std::wstring str02;
31 const int i01 = 123;
32 int a, b;
34 std::ios_base::iostate state1, state2, statefail, stateeof;
35 statefail = std::ios_base::failbit;
36 stateeof = std::ios_base::eofbit;
38 // string str() const
39 str02 = is01.str();
40 VERIFY( str00 == str02 );
42 // void str(const basic_string&)
43 is01.str(str01);
44 str02 = is01.str();
45 VERIFY( str01 == str02 );
46 state1 = is01.rdstate();
47 is01 >> a;
48 state2 = is01.rdstate();
49 VERIFY( a == i01 );
50 // 22.2.2.1.2 num_get virtual functions
51 // p 13
52 // in any case, if stage 2 processing was terminated by the test for
53 // in == end then err != ios_base::eofbit is performed.
54 VERIFY( state1 != state2 );
55 VERIFY( state2 == stateeof );
57 is01.str(str01);
58 is01 >> b;
59 VERIFY( b != a );
60 // as is01.good() is false, istream::sentry blocks extraction.
62 is01.clear();
63 state1 = is01.rdstate();
64 is01 >> b;
65 state2 = is01.rdstate();
66 VERIFY( b == a );
67 VERIFY( state1 != state2 );
68 VERIFY( state2 == stateeof );
71 int main()
73 test01();
74 return 0;