Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / testsuite / 27_io / basic_istringstream / str / char / 1.cc
blobced7600be9f0b01b6a4c074b412cbc556a6e7287
1 // 2000-01-10 bkoz
3 // Copyright (C) 2000, 2001, 2003, 2004 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 2, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // 27.7.2.2 member functions (istringstream_members)
23 #include <sstream>
24 #include <testsuite_hooks.h>
26 void test01()
28 bool test __attribute__((unused)) = true;
29 std::istringstream is01;
30 const std::string str00;
31 const std::string str01 = "123";
32 std::string str02;
33 const int i01 = 123;
34 int a,b;
36 std::ios_base::iostate state1, state2, statefail, stateeof;
37 statefail = std::ios_base::failbit;
38 stateeof = std::ios_base::eofbit;
40 // string str() const
41 str02 = is01.str();
42 VERIFY( str00 == str02 );
44 // void str(const basic_string&)
45 is01.str(str01);
46 str02 = is01.str();
47 VERIFY( str01 == str02 );
48 state1 = is01.rdstate();
49 is01 >> a;
50 state2 = is01.rdstate();
51 VERIFY( a == i01 );
52 // 22.2.2.1.2 num_get virtual functions
53 // p 13
54 // in any case, if stage 2 processing was terminated by the test for
55 // in == end then err != ios_base::eofbit is performed.
56 VERIFY( state1 != state2 );
57 VERIFY( state2 == stateeof );
59 is01.str(str01);
60 is01 >> b;
61 VERIFY( b != a );
62 // as is01.good() is false, istream::sentry blocks extraction.
64 is01.clear();
65 state1 = is01.rdstate();
66 is01 >> b;
67 state2 = is01.rdstate();
68 VERIFY( b == a );
69 VERIFY( state1 != state2 );
70 VERIFY( state2 == stateeof );
73 int main()
75 test01();
76 return 0;