]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/numpunct/members/pod/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / numpunct / members / pod / 1.cc
CommitLineData
a08fc974 1// 2003-07-09 Benjamin Kosnik <bkoz@redhat.com>
2
f1717362 3// Copyright (C) 2003-2016 Free Software Foundation, Inc.
a08fc974 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)
a08fc974 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/>.
a08fc974 19
20#include <locale>
21#include <sstream>
22#include <ostream>
23#include <stdexcept>
a08fc974 24#include <testsuite_hooks.h>
4f67a81c 25#include <testsuite_character.h>
a08fc974 26
27// Check for numpunct and ctype dependencies. Make sure that numpunct
28// can be created without ctype.
29void test01()
30{
31 using namespace std;
c4ffdcdf 32 using __gnu_test::pod_ushort;
33 typedef pod_ushort::value_type value_type;
34 typedef numpunct<pod_ushort>::string_type string_type;
35 typedef basic_stringbuf<pod_ushort> stringbuf_type;
36 typedef basic_ostream<pod_ushort> ostream_type;
a08fc974 37
f8ef786c 38 bool test __attribute__((unused)) = true;
a08fc974 39
40 // Pre-cache sanity check.
c4ffdcdf 41 const locale loc(locale::classic(), new numpunct<pod_ushort>);
42 const numpunct<pod_ushort>& np = use_facet<numpunct<pod_ushort> >(loc);
a08fc974 43
c4ffdcdf 44 pod_ushort dp = np.decimal_point();
45 pod_ushort ts = np.thousands_sep();
a08fc974 46 string g = np.grouping();
47 string_type strue = np.truename();
48 string_type sfalse = np.falsename();
49
c4ffdcdf 50 pod_ushort basedp = { value_type('.') };
51 pod_ushort basets = { value_type(',') };
a08fc974 52
c4ffdcdf 53 string_type basetrue(4, pod_ushort());
a08fc974 54 basetrue[0].value = value_type('t');
55 basetrue[1].value = value_type('r');
56 basetrue[2].value = value_type('u');
57 basetrue[3].value = value_type('e');
58
c4ffdcdf 59 string_type basefalse(5, pod_ushort());
a08fc974 60 basefalse[0].value = value_type('f');
61 basefalse[1].value = value_type('a');
62 basefalse[2].value = value_type('l');
63 basefalse[3].value = value_type('s');
64 basefalse[4].value = value_type('e');
65
c4ffdcdf 66 VERIFY( char_traits<pod_ushort>::eq(dp, basedp) );
67 VERIFY( char_traits<pod_ushort>::eq(ts, basets) );
a08fc974 68 VERIFY( g == "" );
69 VERIFY( strue == basetrue );
70 VERIFY( sfalse == basefalse );
71}
72
73int main()
74{
75 test01();
76 return 0;
77}