1263346Sjmmv// { dg-require-namedlocale "" }
2145620Sharti
3145620Sharti// 2001-08-15 Benjamin Kosnik  <bkoz@redhat.com>
4145620Sharti
5145620Sharti// Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation
6146822Sharti//
7145620Sharti// This file is part of the GNU ISO C++ Library.  This library is free
8146822Sharti// software; you can redistribute it and/or modify it under the
9145620Sharti// terms of the GNU General Public License as published by the
10146822Sharti// Free Software Foundation; either version 3, or (at your option)
11146822Sharti// any later version.
12145620Sharti
13145620Sharti// This library is distributed in the hope that it will be useful,
14263082Sjmmv// but WITHOUT ANY WARRANTY; without even the implied warranty of
15263082Sjmmv// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16263082Sjmmv// GNU General Public License for more details.
17263082Sjmmv
18263082Sjmmv// You should have received a copy of the GNU General Public License along
19263082Sjmmv// with this library; see the file COPYING3.  If not see
20263082Sjmmv// <http://www.gnu.org/licenses/>.
21145620Sharti
22146822Sharti// 22.2.4.1.1 collate members
23145620Sharti
24146822Sharti#include <testsuite_hooks.h>
25146822Sharti
26146822Sharti#define main discard_main_1
27146822Sharti#include "1.cc"
28146822Sharti#undef main
29146822Sharti
30146822Sharti#define main discard_main_2
31145620Sharti#include "2.cc"
32146822Sharti#undef main
33146822Sharti
34146822Shartiint main()
35145620Sharti{
36146822Sharti  using namespace __gnu_test;
37146822Sharti  func_callback two;
38146822Sharti  two.push_back(&test01);
39145620Sharti  two.push_back(&test02);
40146822Sharti  run_tests_wrapped_env("de_DE", "LANG", two);
41146822Sharti  return 0;
42146822Sharti}
43146855Sharti