]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/util/testsuite_tr1.h
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / util / testsuite_tr1.h
index 03cc431c1cf3f45ceadf6df540dfc4665cd3ef83..46500ac8c2d815724e1224ddf3ed82bf207b55df 100644 (file)
@@ -1,8 +1,7 @@
 // -*- C++ -*-
 // Testing utilities for the tr1 testsuite.
 //
-// Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011
-// Free Software Foundation, Inc.
+// Copyright (C) 2004-2022 Free Software Foundation, Inc.
 //
 // 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
 #define _GLIBCXX_TESTSUITE_TR1_H
 
 #include <ext/type_traits.h>
+#include <testsuite_hooks.h>
 
 namespace __gnu_test
 {
   // For tr1/type_traits.
   template<template<typename> class Category, typename Type>
+#if __cplusplus >= 201103L
+    constexpr
+#endif
     bool
     test_category(bool value)
     {
-      bool ret = true;
-      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;
-      return ret;
-    }
-
-  template<template<typename> class Property, typename Type>
-    bool
-    test_property(typename Property<Type>::value_type value)
-    {
-      bool ret = true;
-      ret &= Property<Type>::value == value;
-      ret &= Property<Type>::type::value == value;
-      return ret;
+      return (Category<Type>::value == value
+             && Category<const Type>::value == value
+             && Category<volatile Type>::value == value
+             && Category<const volatile Type>::value == value
+             && Category<Type>::type::value == value
+             && Category<const Type>::type::value == value
+             && Category<volatile Type>::type::value == value
+             && Category<const volatile Type>::type::value == value);
     }
 
   // For testing tr1/type_traits/extent, which has a second template
   // parameter.
   template<template<typename, unsigned> class Property,
           typename Type, unsigned Uint>
+#if __cplusplus >= 201103L
+    constexpr
+#endif
     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;
+      return (Property<Type, Uint>::value == value
+             && Property<Type, Uint>::type::value == value);
     }
 
-#ifdef __GXX_EXPERIMENTAL_CXX0X__
-  template<template<typename...> class Property, typename... Types>
+#if __cplusplus >= 201103L
+  template<template<typename...> class Property,
+          typename Type1, typename... Types>
+    constexpr bool
+    test_property(typename Property<Type1, Types...>::value_type value)
+    {
+      return (Property<Type1, Types...>::value == value
+             && Property<Type1, Types...>::type::value == value);
+    }
+#else
+  template<template<typename> class Property, typename Type>
     bool
-    test_property(typename Property<Types...>::value_type value)
+    test_property(typename Property<Type>::value_type value)
     {
-      bool ret = true;
-      ret &= Property<Types...>::value == value;
-      ret &= Property<Types...>::type::value == value;
-      return ret;
+      return (Property<Type>::value == value
+             && Property<Type>::type::value == value);
     }
 #endif
 
   template<template<typename, typename> class Relationship,
           typename Type1, typename Type2>
+#if __cplusplus >= 201103L
+    constexpr
+#endif
     bool
     test_relationship(bool value)
     {
-      bool ret = true;
-      ret &= Relationship<Type1, Type2>::value == value;
-      ret &= Relationship<Type1, Type2>::type::value == value;
-      return ret;
+      return (Relationship<Type1, Type2>::value == value
+             && Relationship<Type1, Type2>::type::value == value);
     }
 
   // Test types.
@@ -98,6 +98,10 @@ namespace __gnu_test
 
   class DerivedType : public ClassType { };
 
+#if __cplusplus >= 201103L
+  class FinalType final : public DerivedType { };
+#endif
+
   enum EnumType { e0 };
 
   struct ConvType
@@ -122,6 +126,8 @@ namespace __gnu_test
 
   union UnionType { };
 
+  union IncompleteUnion;
+
   class IncompleteClass;
 
   struct ExplicitClass
@@ -140,25 +146,25 @@ namespace __gnu_test
 
   struct ThrowExplicitClass
   {
-    ThrowExplicitClass(double&) throw(int);
-    explicit ThrowExplicitClass(int&) throw(int);
-    ThrowExplicitClass(double&, int&, double&) throw(int);
+    ThrowExplicitClass(double&) THROW(int);
+    explicit ThrowExplicitClass(int&) THROW(int);
+    ThrowExplicitClass(double&, int&, double&) THROW(int);
   };
 
   struct ThrowDefaultClass
   {
-    ThrowDefaultClass() throw(int);
+    ThrowDefaultClass() THROW(int);
   };
 
   struct ThrowCopyConsClass
   {
-    ThrowCopyConsClass(const ThrowCopyConsClass&) throw(int);
+    ThrowCopyConsClass(const ThrowCopyConsClass&) THROW(int);
   };
 
-#ifdef __GXX_EXPERIMENTAL_CXX0X__
+#if __cplusplus >= 201103L
   struct ThrowMoveConsClass
   {
-    ThrowMoveConsClass(ThrowMoveConsClass&&) throw(int);
+    ThrowMoveConsClass(ThrowMoveConsClass&&) noexcept(false);
   };
 
   struct NoexceptExplicitClass
@@ -198,6 +204,7 @@ namespace __gnu_test
   struct NoexceptMoveConsClass
   {
     NoexceptMoveConsClass(NoexceptMoveConsClass&&) noexcept(true);
+    NoexceptMoveConsClass& operator=(NoexceptMoveConsClass&&) = default;
   };
 
   struct ExceptMoveConsClass
@@ -219,6 +226,7 @@ namespace __gnu_test
 
   struct NoexceptMoveAssignClass
   {
+    NoexceptMoveAssignClass(NoexceptMoveAssignClass&&) = default;
     NoexceptMoveAssignClass&
     operator=(NoexceptMoveAssignClass&&) noexcept(true);
   };
@@ -240,6 +248,42 @@ namespace __gnu_test
     DeletedMoveAssignClass&
     operator=(DeletedMoveAssignClass&&) = delete;
   };
+
+  struct NoexceptMoveConsNoexceptMoveAssignClass
+  {
+    NoexceptMoveConsNoexceptMoveAssignClass
+    (NoexceptMoveConsNoexceptMoveAssignClass&&) noexcept(true);
+
+    NoexceptMoveConsNoexceptMoveAssignClass&
+    operator=(NoexceptMoveConsNoexceptMoveAssignClass&&) noexcept(true);
+  };
+
+  struct ExceptMoveConsNoexceptMoveAssignClass
+  {
+    ExceptMoveConsNoexceptMoveAssignClass
+    (ExceptMoveConsNoexceptMoveAssignClass&&) noexcept(false);
+
+    ExceptMoveConsNoexceptMoveAssignClass&
+    operator=(ExceptMoveConsNoexceptMoveAssignClass&&) noexcept(true);
+  };
+
+  struct NoexceptMoveConsExceptMoveAssignClass
+  {
+    NoexceptMoveConsExceptMoveAssignClass
+    (NoexceptMoveConsExceptMoveAssignClass&&) noexcept(true);
+
+    NoexceptMoveConsExceptMoveAssignClass&
+    operator=(NoexceptMoveConsExceptMoveAssignClass&&) noexcept(false);
+  };
+
+  struct ExceptMoveConsExceptMoveAssignClass
+  {
+    ExceptMoveConsExceptMoveAssignClass
+    (ExceptMoveConsExceptMoveAssignClass&&) noexcept(false);
+
+    ExceptMoveConsExceptMoveAssignClass&
+    operator=(ExceptMoveConsExceptMoveAssignClass&&) noexcept(false);
+  };
 #endif
 
   struct NType   // neither trivial nor standard-layout
@@ -269,7 +313,7 @@ namespace __gnu_test
     int j;
   };
 
-#ifdef __GXX_EXPERIMENTAL_CXX0X__
+#if __cplusplus >= 201103L
   struct LType // literal type
   {
     int _M_i;
@@ -364,8 +408,8 @@ namespace __gnu_test
     check_ret_type(T)
     { return true; }
 
-#ifdef __GXX_EXPERIMENTAL_CXX0X__
-  namespace construct_destruct
+#if __cplusplus >= 201103L
+  namespace construct
   {
     struct Empty {};
 
@@ -487,6 +531,155 @@ namespace __gnu_test
     };
   }
 
+  namespace destruct
+  {
+    struct E
+    {};
+
+    struct NTD1
+    {
+      ~NTD1() = default;
+    };
+
+    struct NTD2
+    {
+      ~NTD2();
+    };
+
+    struct NTD3
+    {
+      ~NTD3() throw();
+    };
+
+    struct TD1
+    {
+      ~TD1() noexcept(false);
+    };
+
+    struct TD2
+    {
+      ~TD2() THROW(int);
+    };
+
+    struct Aggr
+    {
+      int i;
+      bool b;
+      E e;
+    };
+
+    struct Aggr2
+    {
+      int i;
+      bool b;
+      TD1 r;
+    };
+
+    struct Del
+    {
+      ~Del() = delete;
+    };
+
+    struct Del2
+    {
+      ~Del2() noexcept = delete;
+    };
+
+    struct Del3
+    {
+      ~Del3() noexcept(false) = delete;
+    };
+
+    struct Der : Aggr
+    {};
+
+    struct Der2 : Aggr2
+    {};
+
+    union U1
+    {
+      int i;
+      double d;
+      void* p;
+      TD1* pt;
+    };
+
+    union Ut
+    {
+      int i;
+      double d;
+      void* p;
+      TD1 pt;
+    };
+
+    enum class En { a, b, c, d };
+    enum En2 { En2a, En2b, En2c, En2d };
+
+    enum OpE : int;
+    enum class OpSE : bool;
+
+    struct Abstract1
+    {
+      virtual ~Abstract1() = 0;
+    };
+
+    struct AbstractDelDtor
+    {
+      ~AbstractDelDtor() = delete;
+      virtual void foo() = 0;
+    };
+
+    struct Abstract2
+    {
+      virtual ~Abstract2() noexcept(false) = 0;
+    };
+
+    struct Abstract3
+    {
+      ~Abstract3() noexcept(false);
+      virtual void foo() noexcept = 0;
+    };
+
+    struct Nontrivial
+    {
+      Nontrivial();
+      Nontrivial(const Nontrivial&);
+      Nontrivial& operator=(const Nontrivial&);
+      ~Nontrivial();
+    };
+
+    union NontrivialUnion
+    {
+      int i;
+      Nontrivial n;
+    };
+
+    struct UnusualCopy
+    {
+      UnusualCopy(UnusualCopy&);
+    };
+
+    struct Ellipsis
+    {
+      Ellipsis(...){}
+    };
+
+    struct DelEllipsis
+    {
+      DelEllipsis(...) = delete;
+    };
+
+    struct DelDef
+    {
+      DelDef() = delete;
+    };
+
+    struct DelCopy
+    {
+      DelCopy(const DelCopy&) = delete;
+    };
+  }
+
   namespace assign
   {
     struct Empty {};
@@ -660,6 +853,24 @@ namespace __gnu_test
       MO& operator=(MO&&) = default;
     };
   }
+
+  struct CopyConsOnlyType
+  {
+    CopyConsOnlyType(int) { }
+    CopyConsOnlyType(CopyConsOnlyType&&) = delete;
+    CopyConsOnlyType(const CopyConsOnlyType&) = default;
+    CopyConsOnlyType& operator=(const CopyConsOnlyType&) = delete;
+    CopyConsOnlyType& operator=(CopyConsOnlyType&&) = delete;
+  };
+
+  struct MoveConsOnlyType
+  {
+    MoveConsOnlyType(int) { }
+    MoveConsOnlyType(const MoveConsOnlyType&) = delete;
+    MoveConsOnlyType(MoveConsOnlyType&&) = default;
+    MoveConsOnlyType& operator=(const MoveConsOnlyType&) = delete;
+    MoveConsOnlyType& operator=(MoveConsOnlyType&&) = delete;
+  };
 #endif
 
 } // namespace __gnu_test