Test only on broken compilers

[SVN r24308]
This commit is contained in:
Stefan Slapeta
2004-08-05 17:41:29 +00:00
parent be9bf983a8
commit 33bde55e1c

View File

@ -8,7 +8,7 @@
// For more information, see http://www.boost.org/libs/range/ // For more information, see http://www.boost.org/libs/range/
// //
#include <boost/config.hpp>
#include <boost/detail/workaround.hpp> #include <boost/detail/workaround.hpp>
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
@ -16,7 +16,7 @@
# pragma warn -8057 // unused argument argc/argv in Boost.Test # pragma warn -8057 // unused argument argc/argv in Boost.Test
#endif #endif
#define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION 1 #ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
#include <boost/range/iterator.hpp> #include <boost/range/iterator.hpp>
#include <boost/range/const_iterator.hpp> #include <boost/range/const_iterator.hpp>
@ -92,8 +92,6 @@ void check_partial_workaround()
} }
#include <boost/test/included/unit_test_framework.hpp> #include <boost/test/included/unit_test_framework.hpp>
using boost::unit_test_framework::test_suite; using boost::unit_test_framework::test_suite;
@ -107,8 +105,9 @@ test_suite* init_unit_test_suite( int argc, char* argv[] )
return test; return test;
} }
#else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
int main() { return 0; }
#endif