]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/locale/operations/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / locale / operations / 1.cc
CommitLineData
d9bce34f 1// 2000-09-11 Benjamin Kosnik <bkoz@redhat.com>
2
fbd26352 3// Copyright (C) 2000-2019 Free Software Foundation, Inc.
d9bce34f 4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
d9bce34f 9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
6bc9506f 17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
d9bce34f 19
20// 22.1.1.4 locale operators [lib.locale.operators]
21
36badd1d 22#include <cwchar> // for mbstate_t
d9bce34f 23#include <locale>
0194306c 24#include <testsuite_hooks.h>
d9bce34f 25
36badd1d 26typedef std::codecvt<char, char, std::mbstate_t> ccodecvt;
d9bce34f 27class gnu_codecvt: public ccodecvt { };
28
29void test01()
30{
31 using namespace std;
32
d9bce34f 33 string str1, str2;
34
35 // construct a locale object with the C facet
36 const locale& cloc = locale::classic();
37 // construct a locale object with the specialized facet.
38 locale loc(locale::classic(), new gnu_codecvt);
39 VERIFY ( cloc != loc );
40 VERIFY ( !(cloc == loc) );
41
42 str1 = cloc.name();
43 str2 = loc.name();
44 VERIFY( loc(str1, str2) == false );
45}
46
11261593 47// bool operator()(const string_type&, const string_type&) const
11261593 48long gnu_count;
e7bf6c0b 49
50class gnu_collate: public std::collate<char>
11261593 51{
52protected:
53 virtual int
54 do_compare(const char*, const char*, const char*, const char*) const
ecff27a0 55 { ++gnu_count; return 0; }
11261593 56};
57
d9bce34f 58int main ()
59{
60 test01();
d9bce34f 61 return 0;
62}
11261593 63
64
65