2004-12-04 10:08:42 +01:00
|
|
|
// -*- C++ -*-
|
|
|
|
// Testing utilities for the tr1 testsuite.
|
|
|
|
//
|
2007-04-09 19:07:37 +02:00
|
|
|
// Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
2004-12-04 10:08:42 +01:00
|
|
|
//
|
|
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
|
|
// software; you can redistribute it and/or modify it under the
|
|
|
|
// terms of the GNU General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this library; see the file COPYING. If not, write to the Free
|
2005-08-17 04:28:44 +02:00
|
|
|
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
2004-12-04 10:08:42 +01:00
|
|
|
// USA.
|
|
|
|
//
|
|
|
|
// As a special exception, you may use this file as part of a free software
|
|
|
|
// library without restriction. Specifically, if other files instantiate
|
|
|
|
// templates or use macros or inline functions from this file, or you compile
|
|
|
|
// this file and link it with other files to produce an executable, this
|
|
|
|
// file does not by itself cause the resulting executable to be covered by
|
|
|
|
// the GNU General Public License. This exception does not however
|
|
|
|
// invalidate any other reasons why the executable file might be covered by
|
|
|
|
// the GNU General Public License.
|
|
|
|
|
|
|
|
#ifndef _GLIBCXX_TESTSUITE_TR1_H
|
|
|
|
#define _GLIBCXX_TESTSUITE_TR1_H
|
|
|
|
|
2006-09-18 15:30:56 +02:00
|
|
|
#include <ext/type_traits.h>
|
2006-01-14 21:59:41 +01:00
|
|
|
|
2004-12-04 10:08:42 +01:00
|
|
|
namespace __gnu_test
|
2005-02-24 02:16:08 +01:00
|
|
|
{
|
2004-12-04 10:08:42 +01:00
|
|
|
// For tr1/type_traits.
|
2006-09-18 15:30:56 +02:00
|
|
|
template<template<typename> class Category, typename Type>
|
2004-12-04 10:08:42 +01:00
|
|
|
bool
|
2004-12-11 22:46:27 +01:00
|
|
|
test_category(bool value)
|
2004-12-04 10:08:42 +01:00
|
|
|
{
|
|
|
|
bool ret = true;
|
2004-12-11 22:46:27 +01:00
|
|
|
ret &= Category<Type>::value == value;
|
|
|
|
ret &= Category<const Type>::value == value;
|
|
|
|
ret &= Category<volatile Type>::value == value;
|
|
|
|
ret &= Category<const volatile Type>::value == value;
|
|
|
|
ret &= Category<Type>::type::value == value;
|
|
|
|
ret &= Category<const Type>::type::value == value;
|
|
|
|
ret &= Category<volatile Type>::type::value == value;
|
|
|
|
ret &= Category<const volatile Type>::type::value == value;
|
2004-12-04 10:08:42 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2004-12-07 17:40:46 +01:00
|
|
|
|
2006-09-18 15:30:56 +02:00
|
|
|
template<template<typename> class Property, typename Type>
|
2004-12-07 17:40:46 +01:00
|
|
|
bool
|
2004-12-11 22:46:27 +01:00
|
|
|
test_property(typename Property<Type>::value_type value)
|
2004-12-07 17:40:46 +01:00
|
|
|
{
|
|
|
|
bool ret = true;
|
2004-12-11 22:46:27 +01:00
|
|
|
ret &= Property<Type>::value == value;
|
|
|
|
ret &= Property<Type>::type::value == value;
|
2004-12-07 17:40:46 +01:00
|
|
|
return ret;
|
2004-12-31 00:27:28 +01:00
|
|
|
}
|
|
|
|
|
2006-02-07 12:11:30 +01:00
|
|
|
// For testing tr1/type_traits/extent, which has a second template
|
|
|
|
// parameter.
|
|
|
|
template<template<typename, unsigned> class Property,
|
|
|
|
typename Type,
|
|
|
|
unsigned Uint>
|
|
|
|
bool
|
|
|
|
test_property(typename Property<Type, Uint>::value_type value)
|
|
|
|
{
|
|
|
|
bool ret = true;
|
|
|
|
ret &= Property<Type, Uint>::value == value;
|
|
|
|
ret &= Property<Type, Uint>::type::value == value;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-12-08 17:33:51 +01:00
|
|
|
template<template<typename, typename> class Relationship,
|
2005-02-24 02:16:08 +01:00
|
|
|
typename Type1, typename Type2>
|
2004-12-08 17:33:51 +01:00
|
|
|
bool
|
2004-12-11 22:46:27 +01:00
|
|
|
test_relationship(bool value)
|
2004-12-08 17:33:51 +01:00
|
|
|
{
|
|
|
|
bool ret = true;
|
2004-12-11 22:46:27 +01:00
|
|
|
ret &= Relationship<Type1, Type2>::value == value;
|
|
|
|
ret &= Relationship<Type1, Type2>::type::value == value;
|
2004-12-08 17:33:51 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-12-07 17:40:46 +01:00
|
|
|
// Test types.
|
|
|
|
class ClassType { };
|
2004-12-08 17:33:51 +01:00
|
|
|
typedef const ClassType cClassType;
|
|
|
|
typedef volatile ClassType vClassType;
|
|
|
|
typedef const volatile ClassType cvClassType;
|
2004-12-25 16:24:36 +01:00
|
|
|
|
2005-02-23 18:23:44 +01:00
|
|
|
class DerivedType : public ClassType { };
|
|
|
|
|
2006-09-22 17:54:52 +02:00
|
|
|
enum EnumType { e0 };
|
2004-12-25 16:24:36 +01:00
|
|
|
|
|
|
|
struct ConvType
|
|
|
|
{ operator int() const; };
|
2005-01-28 14:29:41 +01:00
|
|
|
|
|
|
|
class AbstractClass
|
2005-04-01 05:35:59 +02:00
|
|
|
{
|
2005-03-07 23:22:35 +01:00
|
|
|
virtual void rotate(int) = 0;
|
|
|
|
};
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-03-03 14:52:20 +01:00
|
|
|
class PolymorphicClass
|
2005-04-01 05:35:59 +02:00
|
|
|
{
|
2005-03-07 23:22:35 +01:00
|
|
|
virtual void rotate(int);
|
|
|
|
};
|
2005-03-03 14:52:20 +01:00
|
|
|
|
2005-04-01 05:35:59 +02:00
|
|
|
class DerivedPolymorphic : public PolymorphicClass { };
|
2005-03-03 14:52:20 +01:00
|
|
|
|
2007-04-09 19:07:37 +02:00
|
|
|
class VirtualDestructorClass
|
|
|
|
{
|
|
|
|
virtual ~VirtualDestructorClass();
|
|
|
|
};
|
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
union UnionType { };
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-11-12 01:19:24 +01:00
|
|
|
class IncompleteClass;
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
int truncate_float(float x) { return (int)x; }
|
|
|
|
long truncate_double(double x) { return (long)x; }
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
struct do_truncate_float_t
|
|
|
|
{
|
|
|
|
do_truncate_float_t()
|
|
|
|
{
|
|
|
|
++live_objects;
|
|
|
|
}
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
do_truncate_float_t(const do_truncate_float_t&)
|
|
|
|
{
|
|
|
|
++live_objects;
|
|
|
|
}
|
2005-04-01 05:35:59 +02:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
~do_truncate_float_t()
|
|
|
|
{
|
|
|
|
--live_objects;
|
|
|
|
}
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
int operator()(float x) { return (int)x; }
|
2005-04-01 05:35:59 +02:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
static int live_objects;
|
|
|
|
};
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
int do_truncate_float_t::live_objects = 0;
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
struct do_truncate_double_t
|
|
|
|
{
|
|
|
|
do_truncate_double_t()
|
|
|
|
{
|
2005-02-24 02:16:08 +01:00
|
|
|
++live_objects;
|
2005-02-25 19:17:06 +01:00
|
|
|
}
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
do_truncate_double_t(const do_truncate_double_t&)
|
|
|
|
{
|
|
|
|
++live_objects;
|
|
|
|
}
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
~do_truncate_double_t()
|
|
|
|
{
|
|
|
|
--live_objects;
|
|
|
|
}
|
2005-02-24 02:16:08 +01:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
long operator()(double x) { return (long)x; }
|
2005-04-01 05:35:59 +02:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
static int live_objects;
|
|
|
|
};
|
2005-04-01 05:35:59 +02:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
int do_truncate_double_t::live_objects = 0;
|
2005-04-01 05:35:59 +02:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
struct X
|
|
|
|
{
|
|
|
|
int bar;
|
2005-04-01 05:35:59 +02:00
|
|
|
|
2005-02-25 19:17:06 +01:00
|
|
|
int foo() { return 1; }
|
|
|
|
int foo_c() const { return 2; }
|
|
|
|
int foo_v() volatile { return 3; }
|
|
|
|
int foo_cv() const volatile { return 4; }
|
|
|
|
};
|
complex (arg, [...]): Add, implementing TR1, 8.1.9.
2006-01-13 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/tr1/complex (arg, conj, imag, norm, polar, pow, real):
Add, implementing TR1, 8.1.9.
(__promote_2): New.
* include/tr1/common.h: New, provides __promote, __promote_2.
* include/Makefile.am: Add.
* include/Makefile.in: Regenerate.
* testsuite/testsuite_tr1.h (check_ret_type): New.
* testsuite/tr1/8_c_compatibility/complex/overloads_int.cc: New.
* testsuite/tr1/8_c_compatibility/complex/overloads_float.cc: New.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r109663
2006-01-13 10:45:57 +01:00
|
|
|
|
|
|
|
// For use in 8_c_compatibility.
|
|
|
|
template<typename R, typename T>
|
2006-09-22 17:54:52 +02:00
|
|
|
typename __gnu_cxx::__enable_if<std::__are_same<R, T>::__value,
|
2006-09-18 15:30:56 +02:00
|
|
|
bool>::__type
|
complex (arg, [...]): Add, implementing TR1, 8.1.9.
2006-01-13 Paolo Carlini <pcarlini@suse.de>
Howard Hinnant <hhinnant@apple.com>
* include/tr1/complex (arg, conj, imag, norm, polar, pow, real):
Add, implementing TR1, 8.1.9.
(__promote_2): New.
* include/tr1/common.h: New, provides __promote, __promote_2.
* include/Makefile.am: Add.
* include/Makefile.in: Regenerate.
* testsuite/testsuite_tr1.h (check_ret_type): New.
* testsuite/tr1/8_c_compatibility/complex/overloads_int.cc: New.
* testsuite/tr1/8_c_compatibility/complex/overloads_float.cc: New.
Co-Authored-By: Howard Hinnant <hhinnant@apple.com>
From-SVN: r109663
2006-01-13 10:45:57 +01:00
|
|
|
check_ret_type(T)
|
|
|
|
{ return true; }
|
|
|
|
|
2005-04-01 05:35:59 +02:00
|
|
|
} // namespace __gnu_test
|
2004-12-04 10:08:42 +01:00
|
|
|
|
|
|
|
#endif // _GLIBCXX_TESTSUITE_TR1_H
|