From 5b7204632ab919f505e314246eff9ef7f66d61f1 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Thu, 15 Aug 2013 15:17:40 +0000 Subject: [PATCH] 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) [SVN r85357] --- test/is_copy_constructible_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/is_copy_constructible_test.cpp b/test/is_copy_constructible_test.cpp index 6829092..23b58a4 100644 --- a/test/is_copy_constructible_test.cpp +++ b/test/is_copy_constructible_test.cpp @@ -83,7 +83,7 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::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::value, false); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_copy_constructible::value, false); #endif