2 // Testing utilities for the tr1 testsuite.
4 // Copyright (C) 2004, 2005 Free Software Foundation, Inc.
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 2, or (at your option)
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.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
31 #ifndef _GLIBCXX_TESTSUITE_TR1_H
32 #define _GLIBCXX_TESTSUITE_TR1_H
36 // For tr1/type_traits.
37 template<template<typename
> class Category
,
40 test_category(bool value
)
43 ret
&= Category
<Type
>::value
== value
;
44 ret
&= Category
<const Type
>::value
== value
;
45 ret
&= Category
<volatile Type
>::value
== value
;
46 ret
&= Category
<const volatile Type
>::value
== value
;
47 ret
&= Category
<Type
>::type::value
== value
;
48 ret
&= Category
<const Type
>::type::value
== value
;
49 ret
&= Category
<volatile Type
>::type::value
== value
;
50 ret
&= Category
<const volatile Type
>::type::value
== value
;
54 template<template<typename
> class Property
,
57 test_property(typename Property
<Type
>::value_type value
)
60 ret
&= Property
<Type
>::value
== value
;
61 ret
&= Property
<Type
>::type::value
== value
;
65 template<template<typename
, typename
> class Relationship
,
66 typename Type1
, typename Type2
>
68 test_relationship(bool value
)
71 ret
&= Relationship
<Type1
, Type2
>::value
== value
;
72 ret
&= Relationship
<Type1
, Type2
>::type::value
== value
;
78 typedef const ClassType cClassType
;
79 typedef volatile ClassType vClassType
;
80 typedef const volatile ClassType cvClassType
;
82 class DerivedType
: public ClassType
{ };
87 { operator int() const; };
91 virtual void rotate(int) = 0;
92 virtual ~AbstractClass();
95 class PolymorphicClass
97 virtual void rotate(int);
98 virtual ~PolymorphicClass();
101 class DerivedPolymorphic
: public PolymorphicClass
{ };
105 class IncompleteClass
;
107 int truncate_float(float x
) { return (int)x
; }
108 long truncate_double(double x
) { return (long)x
; }
110 struct do_truncate_float_t
112 do_truncate_float_t()
117 do_truncate_float_t(const do_truncate_float_t
&)
122 ~do_truncate_float_t()
127 int operator()(float x
) { return (int)x
; }
129 static int live_objects
;
132 int do_truncate_float_t::live_objects
= 0;
134 struct do_truncate_double_t
136 do_truncate_double_t()
141 do_truncate_double_t(const do_truncate_double_t
&)
146 ~do_truncate_double_t()
151 long operator()(double x
) { return (long)x
; }
153 static int live_objects
;
156 int do_truncate_double_t::live_objects
= 0;
162 int foo() { return 1; }
163 int foo_c() const { return 2; }
164 int foo_v() volatile { return 3; }
165 int foo_cv() const volatile { return 4; }
167 } // namespace __gnu_test
169 #endif // _GLIBCXX_TESTSUITE_TR1_H