|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r85357 - trunk/libs/type_traits/test
From: antoshkka_at_[hidden]
Date: 2013-08-15 11:17:41
Author: apolukhin
Date: 2013-08-15 11:17:40 EDT (Thu, 15 Aug 2013)
New Revision: 85357
URL: http://svn.boost.org/trac/boost/changeset/85357
Log:
Disable tests that can not be passed by intel compiler due to its usege of the is_copy_constructible trait in C++98/fallback mode (beacause of the bugs in SFINAE for deleted functions). (refs #8802)
Text files modified:
trunk/libs/type_traits/test/is_copy_constructible_test.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/type_traits/test/is_copy_constructible_test.cpp
==============================================================================
--- trunk/libs/type_traits/test/is_copy_constructible_test.cpp Thu Aug 15 07:55:21 2013 (r85356)
+++ trunk/libs/type_traits/test/is_copy_constructible_test.cpp 2013-08-15 11:17:40 EDT (Thu, 15 Aug 2013) (r85357)
@@ -83,7 +83,7 @@
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible<has3>::value, true);
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible<has4>::value, true);
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible<has_not>::value, false);
-#ifndef BOOST_NO_CXX11_DELETED_FUNCTIONS
+#if !defined(BOOST_NO_CXX11_DELETED_FUNCTIONS) && !defined(BOOST_INTEL_CXX_VERSION)
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible<has_not2>::value, false);
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible<has_not3>::value, false);
#endif
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk