]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/22_locale/money_put/put/char/9780-3.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / money_put / put / char / 9780-3.cc
1 // { dg-require-namedlocale "de_DE.ISO8859-15" }
2 // { dg-require-namedlocale "es_ES.ISO8859-15" }
3
4 // Copyright (C) 2004-2021 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 3, 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 COPYING3. If not see
19 // <http://www.gnu.org/licenses/>.
20
21 #include <sstream>
22 #include <locale>
23 #include <testsuite_hooks.h>
24
25 int main()
26 {
27 using namespace std;
28 locale l1 = locale(ISO_8859(15,de_DE));
29 locale l2 = locale(ISO_8859(15,es_ES));
30
31 const money_put<char>& mp = use_facet<money_put<char> >(l1);
32 ostringstream oss;
33 oss.imbue(l2);
34 oss.setf(ios_base::showbase);
35
36 long double ld = -1234567890;
37 mp.put(oss.rdbuf(), true, oss, ' ', ld); // -EUR 12.345.678,90
38 string res = oss.str();
39
40 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 7)
41 VERIFY( res == "-12.345.678,90 EUR " );
42 #else
43 VERIFY( res == "-EUR 12.345.678,90" );
44 #endif
45
46 return 0;
47 }