Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / libstdc++-v3 / testsuite / 22_locale / locale / global_locale_objects / 14071.cc
blobf0035cbfbcbdb50b364c67d98bff658e18e09e1a
1 // { dg-require-namedlocale "is_IS" }
2 // { dg-require-namedlocale "en_US" }
4 // 2004-02-09 Petur Runolfsson <peturr02@ru.is>
6 // Copyright (C) 2004, 2005, 2009, 2010 Free Software Foundation
7 //
8 // This file is part of the GNU ISO C++ Library. This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 3, or (at your option)
12 // any later version.
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 // GNU General Public License for more details.
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING3. If not see
21 // <http://www.gnu.org/licenses/>.
23 // 22.1.1.5 locale static members [lib.locale.statics]
25 #include <locale>
26 #include <clocale>
27 #include <testsuite_hooks.h>
29 // libstdc++/14071
30 void test01()
32 using namespace std;
33 bool test __attribute__((unused)) = true;
35 const locale loc_is = locale("is_IS");
36 const locale loc_en = locale("en_US");
38 const locale loc(loc_is, loc_en, locale::monetary);
40 if (loc.name() != "*")
42 locale::global(loc);
43 VERIFY( loc.name() == setlocale(LC_ALL, 0) );
47 int main()
49 test01();
50 return 0;