From 4228d1489cd0cab51daa3626efa6d73b7278e446 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Sat, 14 May 2005 16:00:57 +0000 Subject: [PATCH] Turn off char test on GCC 3.3 for Darwin, because it does strange things to the assembler [SVN r28898] --- test/integral_c.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integral_c.cpp b/test/integral_c.cpp index 736beba..b625fb9 100644 --- a/test/integral_c.cpp +++ b/test/integral_c.cpp @@ -20,7 +20,10 @@ MPL_TEST_CASE() { # define WRAPPER(T, i) integral_c + +#if !(defined(__APPLE_CC__) && defined(__GNUC__) && (__GNUC__ == 3) && (__GNUC_MINOR__ <= 3)) BOOST_PP_REPEAT(10, INTEGRAL_WRAPPER_TEST, char) +#endif BOOST_PP_REPEAT(10, INTEGRAL_WRAPPER_TEST, short) BOOST_PP_REPEAT(10, INTEGRAL_WRAPPER_TEST, int) BOOST_PP_REPEAT(10, INTEGRAL_WRAPPER_TEST, long)