OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc3/] [libstdc++-v3/] [testsuite/] [22_locale/] [numpunct/] [members/] [pod/] [1.cc] - Blame information for rev 516

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// 2003-07-09  Benjamin Kosnik  <bkoz@redhat.com>
2
 
3
// Copyright (C) 2003, 2005, 2009 Free Software Foundation, Inc.
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
8
// Free Software Foundation; either version 3, or (at your option)
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
17
// with this library; see the file COPYING3.  If not see
18
// <http://www.gnu.org/licenses/>.
19
 
20
#include <locale>
21
#include <sstream>
22
#include <ostream>
23
#include <stdexcept>
24
#include <testsuite_hooks.h>
25
#include <testsuite_character.h>
26
 
27
// Check for numpunct and ctype dependencies. Make sure that numpunct
28
// can be created without ctype.
29
void test01()
30
{
31
  using namespace std;
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;
37
 
38
  bool test __attribute__((unused)) = true;
39
 
40
  // Pre-cache sanity check.
41
  const locale  loc(locale::classic(), new numpunct<pod_ushort>);
42
  const numpunct<pod_ushort>& np = use_facet<numpunct<pod_ushort> >(loc);
43
 
44
  pod_ushort dp = np.decimal_point();
45
  pod_ushort ts = np.thousands_sep();
46
  string g = np.grouping();
47
  string_type strue = np.truename();
48
  string_type sfalse = np.falsename();
49
 
50
  pod_ushort basedp = { value_type('.') };
51
  pod_ushort basets = { value_type(',') };
52
 
53
  string_type basetrue(4, pod_ushort());
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
 
59
  string_type basefalse(5, pod_ushort());
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
 
66
  VERIFY( char_traits<pod_ushort>::eq(dp, basedp) );
67
  VERIFY( char_traits<pod_ushort>::eq(ts, basets) );
68
  VERIFY( g == "" );
69
  VERIFY( strue == basetrue );
70
  VERIFY( sfalse == basefalse );
71
}
72
 
73
int main()
74
{
75
  test01();
76
  return 0;
77
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.