OSDN Git Service

964d192d002f010be0a422d3d8528cd9087e862c
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 18_support / numeric_limits / is_signed.cc
1 // { dg-options "-mieee" { target alpha*-*-* } }
2 // { dg-options "-mieee" { target sh*-*-* } }
3
4 // 1999-08-23 bkoz
5
6 // Copyright (C) 1999, 2001, 2002, 2003, 2004, 2009 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 // 18.2.1.1 template class numeric_limits
24
25 #include <limits>
26 #include <limits.h>
27 #include <float.h>
28 #include <cwchar>
29 #include <testsuite_hooks.h>
30
31 #ifdef __CHAR_UNSIGNED__
32 #define char_is_signed false
33 #else
34 #define char_is_signed true
35 #endif
36
37 void test_sign()
38 {
39   bool test __attribute__((unused)) = true;
40   VERIFY( std::numeric_limits<char>::is_signed == char_is_signed );
41   VERIFY( std::numeric_limits<signed char>::is_signed == true );
42   VERIFY( std::numeric_limits<unsigned char>::is_signed == false );
43   VERIFY( std::numeric_limits<short>::is_signed == true );
44   VERIFY( std::numeric_limits<unsigned short>::is_signed == false );
45   VERIFY( std::numeric_limits<int>::is_signed == true );
46   VERIFY( std::numeric_limits<unsigned>::is_signed == false );
47   VERIFY( std::numeric_limits<long>::is_signed == true );
48   VERIFY( std::numeric_limits<unsigned long>::is_signed == false );
49   VERIFY( std::numeric_limits<float>::is_signed == true );
50   VERIFY( std::numeric_limits<double>::is_signed == true );
51   VERIFY( std::numeric_limits<long double>::is_signed == true );
52 }
53
54 int main()
55 {
56   test_sign();
57
58   return 0;
59 }