overloads_c++0x_neg.cc: Use dg-require-cmath.
authorPaolo Carlini <paolo.carlini@oracle.com>
Wed, 11 May 2011 22:36:18 +0000 (22:36 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 11 May 2011 22:36:18 +0000 (22:36 +0000)
2011-05-11  Paolo Carlini  <paolo.carlini@oracle.com>

* testsuite/26_numerics/headers/cmath/overloads_c++0x_neg.cc: Use
dg-require-cmath.
* testsuite/tr1/8_c_compatibility/cmath/overloads_neg.cc: Likewise.

From-SVN: r173684

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/26_numerics/headers/cmath/overloads_c++0x_neg.cc
libstdc++-v3/testsuite/tr1/8_c_compatibility/cmath/overloads_neg.cc

index 661fed45dad7c84227167ad5fd334534e54fa2ad..9136fa6bddc5ed4401b7c9970c110c6b2326c625 100644 (file)
@@ -1,3 +1,9 @@
+2011-05-11  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * testsuite/26_numerics/headers/cmath/overloads_c++0x_neg.cc: Use
+       dg-require-cmath.
+       * testsuite/tr1/8_c_compatibility/cmath/overloads_neg.cc: Likewise.
+
 2011-05-11  François Dumont  <francois.cppdevs@free.fr>
 
        * include/ext/pb_ds/detail/resize_policy/
index 2d8862ead15f59dc2cbcb2cda04f44d373ae42d8..0433ee3f81a9985768e201aa793f23515d32a287 100644 (file)
@@ -1,5 +1,6 @@
-// { dg-options "-std=gnu++0x" }
 // { dg-do compile }
+// { dg-options "-std=gnu++0x" }
+// { dg-require-cmath "" }
 
 // Copyright (C) 2011 Free Software Foundation, Inc.
 //
@@ -22,8 +23,6 @@
 
 // libstdc++/48933
 
-#ifdef _GLIBCXX_USE_C99_MATH_TR1
-
 struct Foo { };
 
 template Foo std::atan2<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
@@ -61,5 +60,3 @@ template Foo std::scalbln<Foo>(Foo, long); // { dg-error "not match" }
 template Foo std::scalbn<Foo>(Foo, int); // { dg-error "not match" }
 template Foo std::tgamma<Foo>(Foo); // { dg-error "not match" }
 template Foo std::trunc<Foo>(Foo); // { dg-error "not match" }
-
-#endif
index 174a81dc5f94c7eea1c7161fb2be73ab744a0221..ae83a00b03da4b4cb9314c17287675f7e5652bfc 100644 (file)
@@ -1,4 +1,5 @@
 // { dg-do compile }
+// { dg-require-cmath "" }
 
 // Copyright (C) 2011 Free Software Foundation, Inc.
 //
@@ -23,8 +24,6 @@
 
 // libstdc++/48933
 
-#ifdef _GLIBCXX_USE_C99_MATH_TR1
-
 struct Foo { };
 
 template Foo std::tr1::atan2<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
@@ -62,5 +61,3 @@ template Foo std::tr1::scalbln<Foo>(Foo, long); // { dg-error "not match" }
 template Foo std::tr1::scalbn<Foo>(Foo, int); // { dg-error "not match" }
 template Foo std::tr1::tgamma<Foo>(Foo); // { dg-error "not match" }
 template Foo std::tr1::trunc<Foo>(Foo); // { dg-error "not match" }
-
-#endif