]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/22_locale/locale/global_locale_objects/14071.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / locale / global_locale_objects / 14071.cc
1 // { dg-require-namedlocale "is_IS.ISO8859-1" }
2 // { dg-require-namedlocale "en_US.ISO8859-1" }
3
4 // 2004-02-09 Petur Runolfsson <peturr02@ru.is>
5
6 // Copyright (C) 2004-2022 Free Software Foundation, Inc.
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.
13
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.
18
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/>.
22
23 // 22.1.1.5 locale static members [lib.locale.statics]
24
25 #include <locale>
26 #include <clocale>
27 #include <testsuite_hooks.h>
28
29 // libstdc++/14071
30 void test01()
31 {
32 using namespace std;
33
34 const locale loc_is = locale(ISO_8859(1,is_IS));
35 const locale loc_en = locale(ISO_8859(1,en_US));
36
37 const locale loc(loc_is, loc_en, locale::monetary);
38
39 if (loc.name() != "*")
40 {
41 locale::global(loc);
42 VERIFY( loc.name() == setlocale(LC_ALL, 0) );
43 }
44 }
45
46 int main()
47 {
48 test01();
49 return 0;
50 }