OSDN Git Service

2008-06-16 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / numeric_conversions / char / to_string.cc
1 // { dg-options "-std=gnu++0x" }
2 // 2008-06-15  Paolo Carlini  <paolo.carlini@oracle.com>
3
4 // Copyright (C) 2008 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING.  If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
21
22 // 21.4 Numeric Conversions [string.conversions]
23
24 #include <string>
25 #include <testsuite_hooks.h>
26
27 void
28 test01()
29 {
30 #ifdef _GLIBCXX_USE_C99
31
32   bool test __attribute__((unused)) = true;
33   using namespace std;
34   
35   long long ll1 = -2;
36   string one(to_string(ll1));
37   VERIFY( one == "-2" );
38
39   long long ll2 = 10;
40   string two(to_string(ll2));
41   VERIFY( two == "10" );
42
43   unsigned long long ull1 = 2;
44   string three(to_string(ull1));
45   VERIFY( three == "2" );
46
47   unsigned long long ull2 = 3000;
48   string four(to_string(ull2));
49   VERIFY( four == "3000" );
50
51   long double ld1 = 2.0L;
52   string five(to_string(ld1));
53   VERIFY( five == "2.000000" );
54
55   long double ld2 = -4.0L;
56   string six(to_string(ld2));
57   VERIFY( six == "-4.000000" );
58
59 #endif
60 }
61
62 int main()
63 {
64   test01();
65   return 0;
66 }