|
Boost-Commit : |
From: markus.schoepflin_at_[hidden]
Date: 2007-12-10 08:40:57
Author: schoepflin
Date: 2007-12-10 08:40:56 EST (Mon, 10 Dec 2007)
New Revision: 41955
URL: http://svn.boost.org/trac/boost/changeset/41955
Log:
Treated Rogue Wave library concept check failure on Tru64/CXX.
Text files modified:
trunk/libs/concept_check/stl_concept_check.cpp | 3 ++-
trunk/status/explicit-failures-markup.xml | 10 ++++++++++
2 files changed, 12 insertions(+), 1 deletions(-)
Modified: trunk/libs/concept_check/stl_concept_check.cpp
==============================================================================
--- trunk/libs/concept_check/stl_concept_check.cpp (original)
+++ trunk/libs/concept_check/stl_concept_check.cpp 2007-12-10 08:40:56 EST (Mon, 10 Dec 2007)
@@ -47,7 +47,8 @@
function_requires< BackInsertionSequence<Vector> >();
#if !(defined(__GNUC__) && defined(BOOST_HIDE_EXPECTED_ERRORS))
-#if !(defined(__sgi) && defined(BOOST_HIDE_EXPECTED_ERRORS))
+#if !((defined(__sgi) || (defined(__DECCXX) && defined(_RWSTD_VER) && _RWSTD_VER <= 0x0203)) \
+ && defined(BOOST_HIDE_EXPECTED_ERRORS))
// old deque iterator missing n + iter operation
function_requires< Mutable_RandomAccessContainer<Deque> >();
#endif
Modified: trunk/status/explicit-failures-markup.xml
==============================================================================
--- trunk/status/explicit-failures-markup.xml (original)
+++ trunk/status/explicit-failures-markup.xml 2007-12-10 08:40:56 EST (Mon, 10 Dec 2007)
@@ -443,6 +443,16 @@
<note author="Jeremy Siek" refid="1"/>
</mark-failure>
</test>
+ <test name="stl_concept_check">
+ <mark-failure>
+ <toolset name="hp_cxx*"/>
+ <note author="Markus Schoepflin" date="09 Dec 2007">
+ This version of the Rogue Wave library fails to provide all
+ needed addition operators for the iterator type and the
+ difference type of std::deque.
+ </note>
+ </mark-failure>
+ </test>
</library>
<!-- config -->
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