OSDN Git Service

Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / collate / compare / char / 2.cc
1 // { dg-require-namedlocale "" }
2
3 // 2001-08-15 Benjamin Kosnik  <bkoz@redhat.com>
4
5 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009
6 // 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.
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.2.4.1.1 collate members
24
25 #include <locale>
26 #include <testsuite_hooks.h>
27
28 // Check German "de_DE" locale.
29 void test02()
30 {
31   using namespace std;
32   typedef std::collate<char>::string_type string_type;
33
34   bool test __attribute__((unused)) = true;
35
36   // basic construction
37   locale loc_c = locale::classic();
38   locale loc_us = locale("en_US");
39   locale loc_fr = locale("fr_FR");
40   locale loc_de = locale("de_DE");
41   VERIFY( loc_c != loc_de );
42   VERIFY( loc_us != loc_fr );
43   VERIFY( loc_us != loc_de );
44   VERIFY( loc_de != loc_fr );
45
46   // cache the collate facets
47   const collate<char>& coll_de = use_facet<collate<char> >(loc_de); 
48
49   // int compare(const charT*, const charT*, const charT*, const charT*) const
50
51   const char* strlit3 = "Äuglein Augment"; // "C" == "Augment Äuglein"
52   const char* strlit4 = "Base baß Baß Bast"; // "C" == "Base baß Baß Bast"
53
54   int i1;
55   int i2;
56   int size3 = char_traits<char>::length(strlit3) - 1;
57   int size4 = char_traits<char>::length(strlit4) - 1;
58
59   i1 = coll_de.compare(strlit3, strlit3 + size3, strlit3, strlit3 + 7);
60   VERIFY ( i1 == 1 );
61   i1 = coll_de.compare(strlit3, strlit3 + 7, strlit3, strlit3 + size3);
62   VERIFY ( i1 == -1 );
63   i1 = coll_de.compare(strlit3, strlit3 + 7, strlit3, strlit3 + 7);
64   VERIFY ( i1 == 0 );
65
66   i1 = coll_de.compare(strlit3, strlit3 + 6, strlit3 + 8, strlit3 + 14);
67   VERIFY ( i1 == -1 );
68
69   i2 = coll_de.compare(strlit4, strlit4 + size4, strlit4, strlit4 + 13);
70   VERIFY ( i2 == 1 );
71   i2 = coll_de.compare(strlit4, strlit4 + 13, strlit4, strlit4 + size4);
72   VERIFY ( i2 == -1 );
73   i2 = coll_de.compare(strlit4, strlit4 + size4, strlit4, strlit4 + size4);
74   VERIFY ( i2 == 0 );
75 }
76
77 int main()
78 {
79   test02();
80   return 0;
81 }