OSDN Git Service

abb2e5ced61d1bc331ecf0628af827c2ab9b7349
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / num_put / put / char / 20909.cc
1 // 2005-04-08  Paolo Carlini  <pcarlini@suse.de>
2
3 // Copyright (C) 2005 Free Software Foundation
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.
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 COPYING.  If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // 22.2.2.2.1  num_put members
22
23 #include <locale>
24 #include <sstream>
25 #include <testsuite_hooks.h>
26
27 // libstdc++/20909
28 void test01()
29 {
30   using namespace std;
31   bool test __attribute__((unused)) = true;
32
33   // A locale that expects grouping.
34   locale loc_de = __gnu_test::try_named_locale("de_DE");
35
36   const string empty;
37   string result;
38
39   ostringstream oss;
40   oss.imbue(loc_de);
41   const num_put<char>& np = use_facet<num_put<char> >(oss.getloc()); 
42
43   double d0 = 2e20;
44   double d1 = -2e20;
45
46   oss.str(empty);
47   oss.clear();
48   np.put(oss.rdbuf(), oss, '*', d0);
49   result = oss.str();
50   VERIFY( result == "2e+20" );
51
52   oss.str(empty);
53   oss.clear();
54   np.put(oss.rdbuf(), oss, '*', d1);
55   result = oss.str();
56   VERIFY( result == "-2e+20" );
57
58   oss.str(empty);
59   oss.clear();
60   oss.setf(ios::uppercase);
61   np.put(oss.rdbuf(), oss, '*', d0);
62   result = oss.str();
63   VERIFY( result == "2E+20" );
64
65   oss.str(empty);
66   oss.clear();
67   oss.setf(ios::showpos);
68   np.put(oss.rdbuf(), oss, '*', d0);
69   result = oss.str();
70   VERIFY( result == "+2E+20" );
71 }
72
73 int main()
74 {
75   test01();
76   return 0;
77 }
78
79