updated SunCC to 6.u2 (C++ 5.3)

[SVN r11600]
This commit is contained in:
Jens Maurer
2001-11-05 21:00:03 +00:00
parent 4fdcd2d6ea
commit d750ec6e09
3 changed files with 7 additions and 3 deletions

View File

@ -61,7 +61,7 @@ int cpp_main(int argc, char* argv[])
// define the number of failures expected for given compilers:
#ifdef BOOST_MSVC
unsigned int expected_failures = 3;
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x520)
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x530)
unsigned int expected_failures = 1;
#elif defined(__GNUC__)
unsigned int expected_failures = 1; // cr_type doesn't compile

View File

@ -41,7 +41,7 @@ int cpp_main(int argc, char* argv[])
#ifdef BOOST_MSVC
// can't separate void and cv-void:
unsigned int expected_failures = 1;
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x520)
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x530)
unsigned int expected_failures = 2;
#else
unsigned int expected_failures = 0;

View File

@ -221,8 +221,12 @@ int cpp_main(int argc, char* argv[])
#ifdef __BORLANDC__
// can't handle enum's or classes that are POD's
unsigned int expected_failures = 6;
#elif defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x520)
#elif defined(__SUNPRO_CC)
#if (__SUNPRO_CC <= 0x520)
unsigned int expected_failures = 55;
#else // (__SUNPRO_CC <= 0x530)
unsigned int expected_failures = 20;
#endif
#elif defined(__MWERKS__)
unsigned int expected_failures = 10;
#elif defined(BOOST_MSVC)