Imported Upstream version 4.7.2
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / 27_io / manipulators / adjustfield / char / 2.cc
1 // Copyright (C) 1997, 1998, 1999, 2002, 2004, 2009
2 // Free Software Foundation, Inc.
3 //
4 // This file is part of the GNU ISO C++ Library.  This library is free
5 // software; you can redistribute it and/or modify it under the
6 // terms of the GNU General Public License as published by the
7 // Free Software Foundation; either version 3, or (at your option)
8 // any later version.
9
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14
15 // You should have received a copy of the GNU General Public License along
16 // with this library; see the file COPYING3.  If not see
17 // <http://www.gnu.org/licenses/>.
18
19
20 #include <sstream>
21 #include <locale>
22 #include <iomanip>
23 #include <testsuite_hooks.h>
24
25 void test02()
26 {
27   bool test __attribute__((unused)) = true;
28   const std::string     str_blank;
29   std::string           str_tmp;
30   std::stringbuf        strbuf;
31   std::ostream          o(&strbuf);
32
33   o << std::setw(6) << std::right << "san";
34   VERIFY( strbuf.str() == "   san" ); 
35   strbuf.str(str_blank);
36
37   o << std::setw(6) << std::internal << "fran";
38   VERIFY( strbuf.str() == "  fran" ); 
39   strbuf.str(str_blank);
40
41   o << std::setw(6) << std::left << "cisco";
42   VERIFY( strbuf.str() == "cisco " ); 
43   strbuf.str(str_blank);
44 }
45
46 int 
47 main() 
48 {
49   test02();
50   return 0;
51 }