OSDN Git Service

Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / util / testsuite_tr1.h
1 // -*- C++ -*-
2 // Testing utilities for the tr1 testsuite.
3 //
4 // Copyright (C) 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3.  If not see
19 // <http://www.gnu.org/licenses/>.
20 //
21
22 #ifndef _GLIBCXX_TESTSUITE_TR1_H
23 #define _GLIBCXX_TESTSUITE_TR1_H
24
25 #include <ext/type_traits.h>
26
27 namespace __gnu_test
28 {
29   // For tr1/type_traits.
30   template<template<typename> class Category, typename Type>
31     bool
32     test_category(bool value)
33     {
34       bool ret = true;
35       ret &= Category<Type>::value == value;
36       ret &= Category<const Type>::value == value;
37       ret &= Category<volatile Type>::value == value;
38       ret &= Category<const volatile Type>::value == value;
39       ret &= Category<Type>::type::value == value;
40       ret &= Category<const Type>::type::value == value;
41       ret &= Category<volatile Type>::type::value == value;
42       ret &= Category<const volatile Type>::type::value == value;
43       return ret;
44     }
45
46   template<template<typename> class Property, typename Type>
47     bool
48     test_property(typename Property<Type>::value_type value)
49     {
50       bool ret = true;
51       ret &= Property<Type>::value == value;
52       ret &= Property<Type>::type::value == value;
53       return ret;
54     }
55
56   // For testing tr1/type_traits/extent, which has a second template
57   // parameter.
58   template<template<typename, unsigned> class Property,
59            typename Type,
60            unsigned Uint>
61     bool
62     test_property(typename Property<Type, Uint>::value_type value)
63     {
64       bool ret = true;
65       ret &= Property<Type, Uint>::value == value;
66       ret &= Property<Type, Uint>::type::value == value;
67       return ret;
68     }
69
70   template<template<typename, typename> class Relationship,
71            typename Type1, typename Type2>
72     bool
73     test_relationship(bool value)
74     {
75       bool ret = true;
76       ret &= Relationship<Type1, Type2>::value == value;
77       ret &= Relationship<Type1, Type2>::type::value == value;
78       return ret;
79     }
80
81   // Test types.
82   class ClassType { };
83   typedef const ClassType           cClassType;
84   typedef volatile ClassType        vClassType;
85   typedef const volatile ClassType  cvClassType;
86
87   class DerivedType : public ClassType { };
88
89   enum EnumType { e0 };
90
91   struct ConvType
92   { operator int() const; };
93
94   class AbstractClass
95   {
96     virtual void rotate(int) = 0;
97   };
98
99   class PolymorphicClass
100   {
101     virtual void rotate(int);
102   };
103
104   class DerivedPolymorphic : public PolymorphicClass { };
105
106   class VirtualDestructorClass
107   {
108     virtual ~VirtualDestructorClass();
109   };
110
111   union UnionType { };
112
113   class IncompleteClass;
114
115   int truncate_float(float x) { return (int)x; }
116   long truncate_double(double x) { return (long)x; }
117
118   struct do_truncate_float_t
119   {
120     do_truncate_float_t()
121     {
122       ++live_objects;
123     }
124
125     do_truncate_float_t(const do_truncate_float_t&)
126     {
127       ++live_objects;
128     }
129
130     ~do_truncate_float_t()
131     {
132       --live_objects;
133     }
134
135     int operator()(float x) { return (int)x; }
136
137     static int live_objects;
138   };
139
140   int do_truncate_float_t::live_objects = 0;
141
142   struct do_truncate_double_t
143   {
144     do_truncate_double_t()
145     {
146      ++live_objects;
147     }
148
149     do_truncate_double_t(const do_truncate_double_t&)
150     {
151       ++live_objects;
152     }
153
154     ~do_truncate_double_t()
155     {
156       --live_objects;
157     }
158
159     long operator()(double x) { return (long)x; }
160
161     static int live_objects;
162   };
163
164   int do_truncate_double_t::live_objects = 0;
165
166   struct X
167   {
168     int bar;
169
170     int foo()                   { return 1; }
171     int foo_c() const           { return 2; }
172     int foo_v()  volatile       { return 3; }
173     int foo_cv() const volatile { return 4; }
174   };
175
176   // For use in 8_c_compatibility.
177   template<typename R, typename T>
178     typename __gnu_cxx::__enable_if<std::__are_same<R, T>::__value, 
179                                     bool>::__type
180     check_ret_type(T)
181     { return true; }
182
183 } // namespace __gnu_test
184
185 #endif // _GLIBCXX_TESTSUITE_TR1_H