]> git.ipfire.org Git - thirdparty/gcc.git/blame - 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
CommitLineData
be803e41 1// { dg-require-namedlocale "is_IS.ISO8859-1" }
2// { dg-require-namedlocale "en_US.ISO8859-1" }
e590fca1 3
007548ed 4// 2004-02-09 Petur Runolfsson <peturr02@ru.is>
5
fbd26352 6// Copyright (C) 2004-2019 Free Software Foundation, Inc.
007548ed 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
6bc9506f 11// Free Software Foundation; either version 3, or (at your option)
007548ed 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
6bc9506f 20// with this library; see the file COPYING3. If not see
21// <http://www.gnu.org/licenses/>.
007548ed 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
30void test01()
31{
32 using namespace std;
007548ed 33
be803e41 34 const locale loc_is = locale(ISO_8859(1,is_IS));
35 const locale loc_en = locale(ISO_8859(1,en_US));
007548ed 36
37 const locale loc(loc_is, loc_en, locale::monetary);
38
39 if (loc.name() != "*")
40 {
41 locale::global(loc);
e4bb1925 42 VERIFY( loc.name() == setlocale(LC_ALL, 0) );
007548ed 43 }
44}
45
46int main()
47{
48 test01();
49 return 0;
50}