Boost
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
February 2006
- 201 participants
- 377 discussions

[Boost-bugs] [ boost-Patches-1438626 ] rational.hpp::gcd returns a negative value sometimes
by SourceForge.net 25 Feb '06
by SourceForge.net 25 Feb '06
25 Feb '06
Patches item #1438626, was opened at 2006-02-25 06:49
Message generated for change (Settings changed) made by mclow
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=307586&aid=1438626&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: David Benbennick (dbenbenn)
>Assigned to: Jonathan Turkanis (turkanis)
Summary: rational.hpp::gcd returns a negative value sometimes
Initial Comment:
boost/rational.hpp provides a gcd function, which is
supposed to be non-negative. It sometimes returns a
negative value, which can cause problems in other parts
of rational.hpp. For example, assuming long is a
4-byte type,
boost::gcd<long>(6, -2147483648)
returns -2. As a result,
boost::rational<long>(-1073741821, 6) +
boost::rational<long>(-1073741827, 6)
produces an invalid rational number, 1073741824/-3,
instead of the correct answer -1073741824/3.
Here is a small patch to fix the problem. Note that
this is how boost/math/common_factor_rt.hpp calculates
the greatest common divisor.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=307586&aid=1438626&group_…
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Boost-bugs mailing list
Boost-bugs(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/boost-bugs
1
0

[Boost-bugs] [ boost-Patches-1434821 ] rational::operator< fails for unsigned value types
by SourceForge.net 25 Feb '06
by SourceForge.net 25 Feb '06
25 Feb '06
Patches item #1434821, was opened at 2006-02-19 13:24
Message generated for change (Settings changed) made by mclow
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=307586&aid=1434821&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: David Benbennick (dbenbenn)
>Assigned to: Jonathan Turkanis (turkanis)
Summary: rational::operator< fails for unsigned value types
Initial Comment:
There's a minor bug in rational.hpp when using unsigned
values. Consider the following simple program:
int main(void) {
boost::rational<unsigned int> x = 0;
assert(x.operator<(1));
}
The assertion fails. The reason is that in
rational.hpp::rational<IntType>::operator< (param_type
i) are the lines
if (num > zero)
return (num/den) < i;
else
return -i < (-num/den);
The last line is bogus for unsigned types if num == 0
and i > 0. The problem can be fixed by changing (num >
zero) to (num >= zero).
Another issue with the same section of code is that it
uses up to 5 comparisons of IntType values. Attached
is a patch that fixes the bug described, and also makes
the function only perform up to 3 comparisons. That
can make a difference, of course, if IntType is a
complicated type with a slow comparison operator.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=307586&aid=1434821&group_…
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Boost-bugs mailing list
Boost-bugs(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/boost-bugs
1
0
Six weeks ago: 56 open bugs
Five weeks ago: 57 open bugs
Four weeks ago: 54 open bugs.
Three weeks ago: 54 open bugs.
Two week ago: 54 open bugs
One week ago: 54 open bugs
Today: 54 open bugs
Sadly, there were _no_ changes on the bug list this week!
When I started nagging folks, we had 145 bugs - and we've closed
almost 2/3 of them; but now we seem to have hit a wall :-(
If you think that a bug has been assigned incorrectly, please let me know.
Bug counts per assignee:
Mike Glassford 9
Doug Gregor 6
Stephen Cleary (shammah) 5
Jeff Garland (az_sw_dude) 4
Joerg Walter 4
Jeremy Siek 3
John R. Bandela 2
Marshall Clow 2
Joel de guzman (djowel) 2
Eric Friedman (ebf) 2
Thorsten Ottosen (nesotto) 2
Rene Rivera (grafik) 2
Jonathan Turkanis 2
Beman Dawes 1
Kevlin Henney 1
Hubert Holin 1
Samuel Kremp 1
John Maddock 1
Jens Maurer 1
Vladimir Prus 1
Daniel Wallin 1
Nobody 1
Here are the bugs, sorted by assignee:
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: wrong usage of ios_base::narrow
Bug #: 989487
<http://sourceforge.net/tracker/index.php?func=detail&aid=989487&group_id=75…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: date_time type conversion warning
Bug #: 1069225
<http://sourceforge.net/tracker/index.php?func=detail&aid=1069225&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: local_adjustor::utc_to_local throws 'Time label invalid'
Bug #: 1220011
<http://sourceforge.net/tracker/index.php?func=detail&aid=1220011&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: bjam don`t copy lib & dll files to stage
Bug #: 1402743
<http://sourceforge.net/tracker/index.php?func=detail&aid=1402743&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: linker error mingw 3.4.5
Bug #: 1426819
<http://sourceforge.net/tracker/index.php?func=detail&aid=1426819&group_id=7…>
Assignee: daniel_wallin <http://sourceforge.net/users/daniel_wallin/>
Summary: [Parameter] Docco error section 2.7.2
Bug #: 1378446
<http://sourceforge.net/tracker/index.php?func=detail&aid=1378446&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: EdgeListS = setS for adjacency_list does not work
Bug #: 1163077
<http://sourceforge.net/tracker/index.php?func=detail&aid=1163077&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: LEDA graph adaptors do not handle hidden nodes properly
Bug #: 1168431
<http://sourceforge.net/tracker/index.php?func=detail&aid=1168431&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: random_vertex/random_edge are unnecessarily inefficient
Bug #: 1204684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1204684&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Document copy_component
Bug #: 1204688
<http://sourceforge.net/tracker/index.php?func=detail&aid=1204688&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: reverse_graph and constness of property maps
Bug #: 1246336
<http://sourceforge.net/tracker/index.php?func=detail&aid=1246336&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Bundled graph properties
Bug #: 1420498
<http://sourceforge.net/tracker/index.php?func=detail&aid=1420498&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: Miss ' = ParserT()'
Bug #: 907299
<http://sourceforge.net/tracker/index.php?func=detail&aid=907299&group_id=75…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: spirit insert_key_actor.hpp
Bug #: 1059936
<http://sourceforge.net/tracker/index.php?func=detail&aid=1059936&group_id=7…>
Assignee: ebf <http://sourceforge.net/users/ebf/>
Summary: boost::blank - missing operators
Bug #: 1191356
<http://sourceforge.net/tracker/index.php?func=detail&aid=1191356&group_id=7…>
Assignee: ebf <http://sourceforge.net/users/ebf/>
Summary: [variant] Bug in recursive_wrapper_fwd.hpp
Bug #: 1359257
<http://sourceforge.net/tracker/index.php?func=detail&aid=1359257&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: AIX 4.3 SIGSEGV at thread termination
Bug #: 551577
<http://sourceforge.net/tracker/index.php?func=detail&aid=551577&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: boost::threads uses msvc only function?
Bug #: 568951
<http://sourceforge.net/tracker/index.php?func=detail&aid=568951&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: BCB6 throw EExternelException
Bug #: 596149
<http://sourceforge.net/tracker/index.php?func=detail&aid=596149&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: thread_cleanup problems
Bug #: 649291
<http://sourceforge.net/tracker/index.php?func=detail&aid=649291&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: Mac implementation of threads is CPU hog
Bug #: 885045
<http://sourceforge.net/tracker/index.php?func=detail&aid=885045&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: condition variables and recursive_mutex
Bug #: 1072605
<http://sourceforge.net/tracker/index.php?func=detail&aid=1072605&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: compiler error on Mac implementation of threads
Bug #: 1201779
<http://sourceforge.net/tracker/index.php?func=detail&aid=1201779&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: Exception safety in class 'thread'
Bug #: 1305885
<http://sourceforge.net/tracker/index.php?func=detail&aid=1305885&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: Memory leak in tss
Bug #: 1424965
<http://sourceforge.net/tracker/index.php?func=detail&aid=1424965&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: boost jam problem with parallel builds
Bug #: 1234224
<http://sourceforge.net/tracker/index.php?func=detail&aid=1234224&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: boost.build needs fixes for HP/UX
Bug #: 1395924
<http://sourceforge.net/tracker/index.php?func=detail&aid=1395924&group_id=7…>
Assignee: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: Cannot compile octonion_test.cpp because of bug in sinc.hpp
Bug #: 751289
<http://sourceforge.net/tracker/index.php?func=detail&aid=751289&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Compiler error for tokenizer on Solaris
Bug #: 976241
<http://sourceforge.net/tracker/index.php?func=detail&aid=976241&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: token_iterator::at_end() result is inversed
Bug #: 1338326
<http://sourceforge.net/tracker/index.php?func=detail&aid=1338326&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: Diff in state of mersenne_twister gen between GCC3.41 & CW9
Bug #: 1115124
<http://sourceforge.net/tracker/index.php?func=detail&aid=1115124&group_id=7…>
Assignee: joerg_walter <http://sourceforge.net/users/joerg_walter/>
Summary: bug in ublas/storage.hpp
Bug #: 1095697
<http://sourceforge.net/tracker/index.php?func=detail&aid=1095697&group_id=7…>
Assignee: joerg_walter <http://sourceforge.net/users/joerg_walter/>
Summary: dead links in uBLAS page
Bug #: 1169273
<http://sourceforge.net/tracker/index.php?func=detail&aid=1169273&group_id=7…>
Assignee: joerg_walter <http://sourceforge.net/users/joerg_walter/>
Summary: Documentation not available on web site:
Bug #: 1228242
<http://sourceforge.net/tracker/index.php?func=detail&aid=1228242&group_id=7…>
Assignee: joerg_walter <http://sourceforge.net/users/joerg_walter/>
Summary: uBLAS::subslice doesn't work
Bug #: 1292635
<http://sourceforge.net/tracker/index.php?func=detail&aid=1292635&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Adding boost::is_complex to type_traits.hpp
Bug #: 1315712
<http://sourceforge.net/tracker/index.php?func=detail&aid=1315712&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: invalid result for File Dependency Examp
Bug #: 551110
<http://sourceforge.net/tracker/index.php?func=detail&aid=551110&group_id=75…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Spelling of Edmonds-Karp-Algorithm
Bug #: 1226292
<http://sourceforge.net/tracker/index.php?func=detail&aid=1226292&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: g++ v3.2.3 inker error for read_graphviz ih boost v1.33.1
Bug #: 1378907
<http://sourceforge.net/tracker/index.php?func=detail&aid=1378907&group_id=7…>
Assignee: kevlin <http://sourceforge.net/users/kevlin/>
Summary: lexical_cast & pure virtual functions & VC 8 STL
Bug #: 1358600
<http://sourceforge.net/tracker/index.php?func=detail&aid=1358600&group_id=7…>
Assignee: mclow <http://sourceforge.net/users/mclow/>
Summary: Solaris - once.cpp compile error
Bug #: 549162
<http://sourceforge.net/tracker/index.php?func=detail&aid=549162&group_id=75…>
Assignee: mclow <http://sourceforge.net/users/mclow/>
Summary: mistake in documentation of condition
Bug #: 1364416
<http://sourceforge.net/tracker/index.php?func=detail&aid=1364416&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: boost.range and 'const char[]'.
Bug #: 1272315
<http://sourceforge.net/tracker/index.php?func=detail&aid=1272315&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: [Boost.Range]boost::const_begin calls non-qualified 'begin'
Bug #: 1361686
<http://sourceforge.net/tracker/index.php?func=detail&aid=1361686&group_id=7…>
Assignee: nobody
Summary: program_options: additional parser bug
Bug #: 1433424
<http://sourceforge.net/tracker/index.php?func=detail&aid=1433424&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: format: assert when parsing invalid pattern
Bug #: 1326132
<http://sourceforge.net/tracker/index.php?func=detail&aid=1326132&group_id=7…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: ct_gcd_lcm.hpp compilation error
Bug #: 558174
<http://sourceforge.net/tracker/index.php?func=detail&aid=558174&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: pool::purge_memory() does not reset next_size
Bug #: 984124
<http://sourceforge.net/tracker/index.php?func=detail&aid=984124&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: Borland compiler error with Pool, boost::pool_allocator
Bug #: 988124
<http://sourceforge.net/tracker/index.php?func=detail&aid=988124&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: perfomance: memory cleanup for pool takes too long
Bug #: 995270
<http://sourceforge.net/tracker/index.php?func=detail&aid=995270&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: boost::pool_allocator breaks with vector of vectors
Bug #: 1179641
<http://sourceforge.net/tracker/index.php?func=detail&aid=1179641&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: rational operator&lt; can overflow
Bug #: 798357
<http://sourceforge.net/tracker/index.php?func=detail&aid=798357&group_id=75…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: problem with boost::iostreams when compiled with Visual C++
Bug #: 1365752
<http://sourceforge.net/tracker/index.php?func=detail&aid=1365752&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: multitoken broken in program_options 1.33
Bug #: 1266877
<http://sourceforge.net/tracker/index.php?func=detail&aid=1266877&group_id=7…>
--
-- Marshall
Marshall Clow Idio Software <mailto:marshall@idio.com>
It is by caffeine alone I set my mind in motion.
It is by the beans of Java that thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.
1
0
This is the second half of my proposed config update for the Borland
2006 compiler. Main changes are:
i/ pragma to warn users that old compiler support is deprecated in
Boost 1.34.
ii/ Unknown compiler test moved from end of file to start, where it
keeps company with the unsupported compiler tests.
iii/ Library detection macros should simplify workaround detection.
With 3 different vendors to support across different versions, and
library selection further controlled by _USE_OLD_RW_STL macro, we need
something simpler like this for library maintainers to test.
I will be posting further patches using these library macros once this
patch is accepted, and I see a test cycle from metacomm showing no
unexpected problems.
--
AlisdairM
cvs diff -u -wb -- boost\config\compiler\borland.hpp (in directory
E:\sourceforge\devel\boost\)
Index: boost/config/compiler/borland.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/config/compiler/borland.hpp,v
retrieving revision 1.37
diff -u -w -b -r1.37 borland.hpp
--- boost/config/compiler/borland.hpp 12 Feb 2006 10:42:10 -0000 1.37
+++ boost/config/compiler/borland.hpp 25 Feb 2006 13:24:48 -0000
@@ -14,8 +14,31 @@
// we don't support Borland prior to version 5.4:
#if __BORLANDC__ < 0x540
# error "Compiler not supported or configured - please reconfigure"
+#elif __BORLANDC__ < 0x581
+# pragma message( "Support for Borland compilers older than BCB2006
is deprecated in Boost 1.34" )
#endif
+// last known and checked version is 0x600 (Builder X preview)
+// Or 0x581 (Borland C++ Builder 2006 Update 1):
+#if (__BORLANDC__ > 0x581) && (__BORLANDC__ != 0x600)
+# if defined(BOOST_ASSERT_CONFIG)
+# error "Unknown compiler version - please run the configure tests
and report the results"
+# else
+# pragma message( "Unknown compiler version - please run the
configure tests and report the results")
+# endif
+#endif
+
+//
+// Support macros to help with standard library detection
+#if (__BORLANDC__ < 0x560) || defined(_USE_OLD_RW_STL)
+# define BOOST_BCB_WITH_ROGUE_WAVE
+#elif __BORLANDC__ < 0x570
+# define BOOST_BCB_WITH_STLPORT
+#else
+# define BOOST_BCB_WITH_DINKUMWARE
+#endif
+
+
//
// Version 5.0 and below:
# if __BORLANDC__ <= 0x0550
@@ -74,7 +97,7 @@
//
// new bug in 5.61:
-#if (__BORLANDC__ >= 0x561) //&& (__BORLANDC__ <= 0x570)
+#if (__BORLANDC__ >= 0x561) && (__BORLANDC__ <= 0x580)
// this seems to be needed by the command line compiler, but not
the IDE:
# define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
#endif
@@ -105,7 +128,7 @@
// Borland C++Builder 6 defaults to using STLPort. If _USE_OLD_RW_STL
is
// defined, then we have 0x560 or greater with the Rogue Wave
implementation
// which presumably has the std::DBL_MAX bug.
-#if ((__BORLANDC__ >= 0x550) && (__BORLANDC__ < 0x560)) ||
defined(_USE_OLD_RW_STL)
+#if defined( BOOST_BCB_WITH_ROGUE_WAVE )
// <climits> is partly broken, some macros define symbols that are
really in
// namespace std, so you end up having to use illegal constructs like
// std::DBL_MAX, as a fix we'll just include float.h and have done
with:
@@ -165,21 +188,3 @@
#define BOOST_COMPILER "Borland C++ version "
BOOST_STRINGIZE(__BORLANDC__)
-// last known and checked version is 1536 (Builder X preview)
-// Or 0x581 (Borland C++ Builder 2006 Update 1):
-#if (__BORLANDC__ > 0x581) && (__BORLANDC__ != 0x600)
-# if defined(BOOST_ASSERT_CONFIG)
-# error "Unknown compiler version - please run the configure tests
and report the results"
-# else
-# pragma message( "Unknown compiler version - please run the
configure tests and report the results")
-# endif
-#endif
-
-
-
-
-
-
-
-
-
2
1
Boost Regression test failures
Report time: 2006-02-25T13:54:52Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-HEAD/developer/issues…
The following platforms have a large number of failures:
intel-9.0-linux
vc-6_5
2643 failures in 45 libraries (1425 are from non-broken platforms)
disjoint_sets (1 of 3 failures are from non-broken platforms)
tokenizer (1 of 8 failures are from non-broken platforms)
random (1 of 2 failures are from non-broken platforms)
functional (0 of 1 failures are from non-broken platforms)
multi_index (59)
concept_check (24 of 26 failures are from non-broken platforms)
functional/hash (39)
iostreams (29 of 58 failures are from non-broken platforms)
utility (4 of 20 failures are from non-broken platforms)
conversion (1 of 2 failures are from non-broken platforms)
graph (20)
tuple (2 of 6 failures are from non-broken platforms)
signals (30 of 36 failures are from non-broken platforms)
type_traits (0 of 46 failures are from non-broken platforms)
program_options (7)
rational (6 of 9 failures are from non-broken platforms)
test (14 of 43 failures are from non-broken platforms)
parameter (12 of 13 failures are from non-broken platforms)
math (6 of 9 failures are from non-broken platforms)
format (4 of 8 failures are from non-broken platforms)
python (47)
mpl (109 of 119 failures are from non-broken platforms)
variant (0 of 12 failures are from non-broken platforms)
static_assert (0 of 1 failures are from non-broken platforms)
wave (3 of 7 failures are from non-broken platforms)
tr1 (133 of 314 failures are from non-broken platforms)
integer (2 of 5 failures are from non-broken platforms)
serialization (452 of 1168 failures are from non-broken platforms)
spirit (48 of 173 failures are from non-broken platforms)
pool (1 of 2 failures are from non-broken platforms)
xpressive (0 of 35 failures are from non-broken platforms)
date_time (23 of 37 failures are from non-broken platforms)
statechart (0 of 52 failures are from non-broken platforms)
thread (16 of 48 failures are from non-broken platforms)
multi_array (15)
config (0 of 1 failures are from non-broken platforms)
algorithm/string (2)
crc (1 of 3 failures are from non-broken platforms)
range (10 of 21 failures are from non-broken platforms)
ptr_container (43)
typeof (5 of 38 failures are from non-broken platforms)
filesystem (30 of 37 failures are from non-broken platforms)
utility/enable_if (0 of 8 failures are from non-broken platforms)
assign (18 of 25 failures are from non-broken platforms)
lambda (0 of 15 failures are from non-broken platforms)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|disjoint_sets|
disjoint_set_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
|tokenizer|
examples: intel-9.0-linux* vc-6_5* vc-6_5-stlport
simple_example_1: intel-9.0-linux*
simple_example_2: intel-9.0-linux*
simple_example_3: intel-9.0-linux*
simple_example_4: intel-9.0-linux*
simple_example_5: intel-9.0-linux*
|random|
random_test: gcc-4.0.2-linux intel-9.0-linux*
|functional|
function_test: intel-9.0-linux*
|multi_index|
test_basic: cw-8_3 tru64cxx71-006 vc-7_0
test_capacity: cw-8_3 tru64cxx71-006 vc-7_0
test_comparison: cw-8_3 tru64cxx71-006 vc-7_0
test_composite_key: cw-8_3 tru64cxx71-006 vc-7_0
test_conv_iterators: cw-8_3 tru64cxx71-006 vc-7_0
test_copy_assignment: cw-8_3 tru64cxx71-006 vc-7_0
test_hash_ops: cw-8_3 tru64cxx71-006 vc-7_0
test_iterators: cw-8_3 tru64cxx71-006 vc-7_0
test_list_ops: cw-8_3 tru64cxx71-006
test_modifiers: cw-8_3 tru64cxx71-006 vc-7_0
test_mpl_ops: tru64cxx71-006
test_observers: cw-8_3 tru64cxx71-006 vc-7_0
test_projection: cw-8_3 tru64cxx71-006 vc-7_0
test_range: cw-8_3 tru64cxx71-006
test_rearrange: cw-8_3 tru64cxx71-006
test_safe_mode: cw-8_3 cw-9_4 cw-9_5-darwin tru64cxx71-006 vc-7_0
test_serialization: cw-8_3 vc-7_0
test_set_ops: cw-8_3 tru64cxx71-006 vc-7_0
test_special_list_ops: vc-7_1
test_special_set_ops: cw-8_3 tru64cxx71-006 vc-7_0
test_update: cw-8_3 cw-9_4 cw-9_5-darwin tru64cxx71-006 vc-7_0
|concept_check|
stl_concept_covering: borland-5_6_4 cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux gcc-4_0-darwin intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 mingw-3_4_2 mingw-3_4_2 qcc-3.3.5-cpp qcc-3.3.5-gpp tru64cxx71-006 vc-6_5* vc-6_5-stlport vc-7_0 vc-7_1 vc-7_1 vc-7_1
|functional/hash|
container_fwd_test: vc-6_5-stlport
hash_built_in_array_test: vc-6_5-stlport vc-7_0
hash_custom_test: vc-6_5-stlport vc-7_0
hash_deque_test: vc-6_5-stlport vc-7_0
hash_float_test: vc-6_5-stlport vc-7_0
hash_friend_test: vc-6_5-stlport vc-7_0
hash_fwd_test_1: vc-7_0
hash_global_namespace_test: borland-5_6_4 vc-6_5-stlport vc-7_0
hash_list_test: vc-6_5-stlport vc-7_0
hash_map_test: vc-6_5-stlport vc-7_0
hash_no_ext_macro_1: vc-6_5-stlport vc-7_0
hash_no_ext_macro_2: vc-6_5-stlport vc-7_0
hash_number_test: vc-6_5-stlport vc-7_0
hash_pointer_test: vc-6_5-stlport vc-7_0
hash_range_test: vc-6_5-stlport vc-7_0
hash_set_test: vc-6_5-stlport vc-7_0
hash_string_test: vc-6_5-stlport vc-7_0
hash_vector_test: vc-6_5-stlport vc-7_0
link_ext_test: vc-6_5-stlport vc-7_0
link_test: vc-7_0
portable: vc-7_0
|iostreams|
array_test: vc-6_5* vc-6_5-stlport
auto_close_test: vc-6_5* vc-6_5-stlport
buffer_size_test: vc-6_5* vc-6_5-stlport
code_converter_test: vc-6_5* vc-6_5-stlport
component_access_test: vc-6_5* vc-6_5-stlport
compose_test: borland-5_6_4 vc-6_5* vc-6_5-stlport
copy_test: vc-6_5* vc-6_5-stlport
counter_test: vc-6_5* vc-6_5-stlport
direct_adapter_test: vc-6_5* vc-6_5-stlport
example_test: vc-6_5* vc-6_5-stlport
file_descriptor_test: vc-6_5* vc-6_5-stlport
file_test: vc-6_5* vc-6_5-stlport
filtering_stream_test: vc-6_5* vc-6_5-stlport
flush_test: vc-6_5* vc-6_5-stlport
invert_test: vc-6_5* vc-6_5-stlport
line_filter_test: vc-6_5* vc-6_5-stlport
mapped_file_test: vc-6_5* vc-6_5-stlport
newline_test: vc-6_5* vc-6_5-stlport
null_test: vc-6_5* vc-6_5-stlport
pipeline_test: vc-6_5* vc-6_5-stlport
positioning_test: vc-6_5* vc-6_5-stlport
regex_filter_test: vc-6_5* vc-6_5-stlport
restrict_test: vc-6_5* vc-6_5-stlport
seekable_file_test: vc-6_5*
seekable_filter_test: vc-6_5* vc-6_5-stlport
stdio_filter_test: vc-6_5* vc-6_5-stlport
symmetric_filter_test: vc-6_5* vc-6_5-stlport
tee_test: vc-6_5* vc-6_5-stlport
wide_stream_test: vc-6_5* vc-6_5-stlport
|utility|
base_from_member_test: intel-9.0-linux*
call_traits_test: intel-9.0-linux*
compressed_pair_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
iterators_test: intel-9.0-linux*
next_prior_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
numeric_traits_test: intel-9.0-linux*
operators_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
ref_ct_test: intel-9.0-linux*
ref_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
result_of_test: intel-9.0-linux*
shared_iterator_test: intel-9.0-linux*
value_init_test: intel-9.0-linux*
|conversion|
lexical_cast_test: vc-6_5* vc-6_5-stlport
|graph|
adjacency_matrix_test: vc-7_0
bidir_remove_edge: vc-7_0
bidir_vec_remove_edge: cw-9_5-darwin gcc-3.4.5-linux gcc-4.0.2-linux intel-win32-8_1 intel-win32-9_0 tru64cxx71-006 vc-7_0 vc-7_1 vc-7_1 vc-7_1
csr_graph_test: vc-7_0
dominator_tree_test: cw-8_3 vc-7_0
graphviz_test: vc-7_1 vc-7_1 vc-7_1
matching_test: cw-8_3 vc-7_0
|tuple|
io_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tuple_test_bench: intel-9.0-linux* vc-6_5* vc-6_5-stlport
|signals|
dead_slot_test: gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux gcc-4_0-darwin intel-9.0-linux* mingw-3_4_2 mingw-3_4_2 qcc-3.3.5-cpp qcc-3.3.5-gpp vc-7_1 vc-7_1 vc-7_1
deletion_test: intel-9.0-linux*
ordering_test: intel-9.0-linux*
signal_n_test: intel-9.0-linux*
signal_test: intel-9.0-linux*
trackable_test: gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux gcc-4_0-darwin intel-9.0-linux* mingw-3_4_2 mingw-3_4_2 qcc-3.3.5-cpp qcc-3.3.5-gpp vc-7_1 vc-7_1 vc-7_1
|type_traits|
add_reference_test: intel-9.0-linux*
aligned_storage_test: intel-9.0-linux*
decay_test: intel-9.0-linux*
function_traits_test: intel-9.0-linux*
has_nothrow_assign_test: intel-9.0-linux*
has_nothrow_constr_test: intel-9.0-linux*
has_nothrow_copy_test: intel-9.0-linux*
has_trivial_assign_test: intel-9.0-linux*
has_trivial_constr_test: intel-9.0-linux*
has_trivial_copy_test: intel-9.0-linux*
has_trivial_destructor_test: intel-9.0-linux*
has_virtual_destructor_test: intel-9.0-linux*
is_abstract_test: intel-9.0-linux*
is_array_test: intel-9.0-linux*
is_base_and_derived_test: intel-9.0-linux*
is_base_of_test: intel-9.0-linux*
is_class_test: intel-9.0-linux*
is_const_test: intel-9.0-linux*
is_convertible_test: intel-9.0-linux*
is_empty_test: intel-9.0-linux*
is_enum_test: intel-9.0-linux*
is_function_test: intel-9.0-linux*
is_member_func_test: intel-9.0-linux*
is_member_obj_test: intel-9.0-linux*
is_member_pointer_test: intel-9.0-linux*
is_object_test: intel-9.0-linux*
is_pod_test: intel-9.0-linux*
is_pointer_test: intel-9.0-linux*
is_polymorphic_test: intel-9.0-linux*
is_reference_test: intel-9.0-linux*
is_same_test: intel-9.0-linux*
is_scalar_test: intel-9.0-linux*
is_signed_test: intel-9.0-linux*
is_stateless_test: intel-9.0-linux*
is_union_test: intel-9.0-linux*
is_unsigned_test: intel-9.0-linux*
is_volatile_test: intel-9.0-linux*
remove_const_test: intel-9.0-linux*
remove_volatile_test: intel-9.0-linux*
tricky_abstract_type_test: intel-9.0-linux*
tricky_function_type_test: intel-9.0-linux*
tricky_incomplete_type_test: intel-9.0-linux*
tricky_is_enum_test: intel-9.0-linux*
tricky_partial_spec_test: intel-9.0-linux*
type_with_alignment_test: intel-9.0-linux*
udt_specialisations: intel-9.0-linux*
|program_options|
cmdline_test_dll: cw-9_4
options_description_test_dll: cw-9_4
parsers_test_dll: cw-9_4
positional_options_test_dll: cw-9_4
unicode_test_dll: cw-9_4
variable_map_test_dll: cw-9_4
winmain_dll: cw-9_4
|rational|
rational_example: intel-9.0-linux*
rational_test: borland-5_6_4 cw-8_3 intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0 vc-7_1 vc-7_1
|test|
algorithms_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
basic_cstring_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
boost_check_equal_str: intel-9.0-linux* vc-6_5* vc-6_5-stlport
class_properties_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
custom_exception_test: intel-9.0-linux*
errors_handling_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
fixed_mapping_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
foreach_test: intel-9.0-linux*
ifstream_line_iterator_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
online_test: intel-9.0-linux*
output_test_stream_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
parameterized_test_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
result_report_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_case_template_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_fp_comparisons: intel-9.0-linux*
test_tools_test: gcc-4_0-darwin intel-9.0-linux* mingw-3_4_2 vc-6_5* vc-6_5-stlport
token_iterator_test: intel-9.0-linux*
|parameter|
basics: borland-5_6_4
duplicates: borland-5_6_4
earwicker: borland-5_6_4
macros: borland-5_6_4
mpl: borland-5_6_4
preprocessor: borland-5_6_4 cw-8_3 vc-6_5* vc-6_5-stlport
sfinae: borland-5_6_4 vc-6_5-stlport
singular: borland-5_6_4
unnamed: borland-5_6_4
|math|
common_factor_test: vc-6_5* vc-6_5-stlport
complex_test: borland-5_6_4 vc-6_5* vc-6_5-stlport
hypot_test: borland-5_6_4
log1p_expm1_test: borland-5_6_4
quaternion_mult_incl_test: vc-6_5* vc-6_5-stlport
|format|
format_test1: vc-6_5* vc-6_5-stlport
format_test2: vc-6_5* vc-6_5-stlport
format_test3: vc-6_5* vc-6_5-stlport
format_test_wstring: vc-6_5* vc-6_5-stlport
|python|
args: qcc-3.3.5-gpp
auto_ptr: qcc-3.3.5-gpp
back_reference: qcc-3.3.5-gpp
ben_scott1: qcc-3.3.5-gpp
callbacks: cw-8_3 cw-9_4 qcc-3.3.5-cpp qcc-3.3.5-gpp
data_members: qcc-3.3.5-gpp
defaults: qcc-3.3.5-gpp
docstring: qcc-3.3.5-gpp
enum: qcc-3.3.5-gpp
exec: qcc-3.3.5-gpp
extract: qcc-3.3.5-gpp
implicit: qcc-3.3.5-gpp
iterator: qcc-3.3.5-gpp
keywords: qcc-3.3.5-gpp
list: cw-8_3 cw-9_4 qcc-3.3.5-cpp qcc-3.3.5-gpp
long: qcc-3.3.5-gpp
map_indexing_suite: qcc-3.3.5-gpp
minimal: qcc-3.3.5-gpp
nested: qcc-3.3.5-gpp
numpy: gcc-4_0-darwin qcc-3.3.5-gpp
object: qcc-3.3.5-gpp
opaque: qcc-3.3.5-gpp
operators: qcc-3.3.5-gpp
pearu1: qcc-3.3.5-gpp
properties: qcc-3.3.5-gpp
raw_ctor: qcc-3.3.5-gpp
return_arg: qcc-3.3.5-gpp
shared_ptr: qcc-3.3.5-gpp
slice: gcc-4_0-darwin
staticmethod: qcc-3.3.5-cpp qcc-3.3.5-gpp
stl_iterator: qcc-3.3.5-gpp
test_pointer_adoption: qcc-3.3.5-gpp
try: qcc-3.3.5-gpp
upcast: tru64cxx71-006
virtual_functions: cw-8_3 cw-9_4 qcc-3.3.5-cpp qcc-3.3.5-gpp
wrapper_held_type: qcc-3.3.5-gpp
|mpl|
bool: borland-5_6_4 cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 mingw-3_4_2 qcc-3.3.5-cpp qcc-3.3.5-gpp tru64cxx71-006 vc-6_5* vc-6_5-stlport vc-7_0 vc-7_1 vc-7_1 vc-7_1
int: borland-5_6_4 cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 mingw-3_4_2 qcc-3.3.5-cpp qcc-3.3.5-gpp tru64cxx71-006 vc-6_5* vc-6_5-stlport vc-7_0 vc-7_1 vc-7_1 vc-7_1
integral_c: borland-5_6_4 cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 mingw-3_4_2 qcc-3.3.5-cpp qcc-3.3.5-gpp tru64cxx71-006 vc-6_5* vc-6_5-stlport vc-7_0 vc-7_1 vc-7_1 vc-7_1
multiset: cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 mingw-3_4_2 qcc-3.3.5-cpp qcc-3.3.5-gpp tru64cxx71-006 vc-6_5* vc-6_5-stlport vc-7_0 vc-7_1 vc-7_1 vc-7_1
size_t: borland-5_6_4 cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 mingw-3_4_2 qcc-3.3.5-cpp qcc-3.3.5-gpp tru64cxx71-006 vc-6_5* vc-6_5-stlport vc-7_0 vc-7_1 vc-7_1 vc-7_1
|variant|
recursive_variant_test: intel-9.0-linux*
variant_comparison_test: intel-9.0-linux*
variant_reference_test: intel-9.0-linux*
variant_test1: intel-9.0-linux*
variant_test2: intel-9.0-linux*
variant_test3: intel-9.0-linux*
variant_test4: intel-9.0-linux*
variant_test5: intel-9.0-linux*
variant_test6: intel-9.0-linux*
variant_test7: intel-9.0-linux*
variant_test8: intel-9.0-linux*
variant_visit_test: intel-9.0-linux*
|static_assert|
static_assert_example_2: intel-9.0-linux*
|wave|
test_re2c_lexer: intel-9.0-linux*
test_slex_lexer: intel-9.0-linux*
testwave: cw-9_5-darwin intel-9.0-linux*
testwave_dll: cw-9_4 cw-9_5-darwin intel-9.0-linux*
|tr1|
run_complex_overloads: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
run_random: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_run_complex_overloads: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_run_random: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_array: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_bind: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_boost: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_complex: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_function: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_hash: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_mem_fn: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_random: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_reference_wrapper: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_regex: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_result_of: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_shared_ptr: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_tr1_include: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_tuple: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
std_test_type_traits: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_array: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_bind: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_boost: intel-9.0-linux* vc-7_0
test_complex: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_complex_std_header: intel-9.0-linux* vc-6_5*
test_function: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_functional_std_header: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_hash: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_mem_fn: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_random: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_reference_wrapper: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_regex: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_result_of: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_shared_ptr: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_tr1_include: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_tuple: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_tuple_tricky: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_type_traits: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
test_utility_std_header: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_add_const_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_add_cv_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_add_pointer_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_add_reference_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_add_volatile_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_aligned_storage_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_alignment_of_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_extent_test: intel-9.0-linux*
tr1_has_nothrow_assign_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_has_nothrow_constr_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_has_nothrow_copy_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_has_trivial_assign_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_has_trivial_constr_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_has_trivial_copy_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_has_trivial_destructor_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_has_virtual_destructor_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_abstract_test: intel-9.0-linux*
tr1_is_arithmetic_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_array_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_is_base_of_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_class_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_compound_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_const_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_is_convertible_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_empty_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_enum_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_floating_point_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_is_function_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_fundamental_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_integral_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_is_member_func_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_member_obj_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_member_pointer_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_object_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_pod_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_pointer_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_polymorphic_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_reference_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_is_same_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_scalar_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_signed_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_union_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_is_unsigned_test: intel-9.0-linux*
tr1_is_void_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_is_volatile_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_rank_test: intel-9.0-linux*
tr1_remove_all_extents_test: intel-9.0-linux*
tr1_remove_const_test: intel-9.0-linux*
tr1_remove_cv_test: intel-9.0-linux*
tr1_remove_extent_test: intel-9.0-linux*
tr1_remove_pointer_test: intel-9.0-linux*
tr1_remove_reference_test: intel-9.0-linux*
tr1_remove_volatile_test: intel-9.0-linux*
tr1_tricky_abstract_type_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_tricky_add_pointer_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_tricky_function_type_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
tr1_tricky_incomplete_type_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
tr1_tricky_is_enum_test: intel-9.0-linux*
tr1_tricky_partial_spec_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport vc-7_0
|integer|
integer_test: intel-9.0-linux*
integer_traits_test: intel-9.0-linux* qcc-3.3.5-gpp vc-6_5* vc-6_5-stlport
|serialization|
test_array_binary_archive: intel-9.0-linux* vc-6_5*
test_array_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_array_text_archive: intel-9.0-linux* vc-6_5*
test_array_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_array_text_warchive: intel-9.0-linux* vc-6_5*
test_array_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_array_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_array_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_array_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_array_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_binary_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_binary_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_binary_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_binary_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_binary_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_binary_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_binary_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_binary_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_binary_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_binary_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_load_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_load_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_load_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_load_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_load_text_warchive: cw-8_3 intel-9.0-linux*
test_class_info_load_text_warchive_dll: cw-9_4 intel-9.0-linux*
test_class_info_load_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_load_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_load_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_load_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_save_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_save_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_save_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_save_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_save_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_save_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_save_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_save_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_class_info_save_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_class_info_save_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_codecvt_null: intel-9.0-linux* qcc-3.3.5-gpp vc-6_5*
test_const_pass: intel-9.0-linux*
test_contained_class_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_contained_class_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_contained_class_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_contained_class_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_contained_class_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_contained_class_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_contained_class_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_contained_class_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_contained_class_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_contained_class_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_cyclic_ptrs_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_delete_pointer_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_delete_pointer_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_delete_pointer_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_delete_pointer_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_delete_pointer_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_delete_pointer_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_delete_pointer_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_delete_pointer_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_delete_pointer_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_delete_pointer_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_demo: intel-9.0-linux*
test_demo_auto_ptr: cw-8_3 intel-9.0-linux* vc-6_5*
test_demo_auto_ptr_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_demo_dll: intel-9.0-linux*
test_demo_exception: intel-9.0-linux*
test_demo_exception_dll: intel-9.0-linux*
test_demo_fast_archive: intel-9.0-linux*
test_demo_fast_archive_dll: cw-9_4 intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 vc-7_0 vc-7_1 vc-7_1 vc-7_1
test_demo_pimpl: cw-8_3 intel-9.0-linux*
test_demo_pimpl_dll: cw-9_4 intel-9.0-linux*
test_demo_polymorphic: cw-8_3 intel-9.0-linux* vc-6_5*
test_demo_polymorphic_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_demo_portable_archive: cw-8_3 intel-9.0-linux*
test_demo_portable_archive_dll: cw-9_4 intel-9.0-linux*
test_demo_shared_ptr: intel-9.0-linux*
test_demo_shared_ptr_dll: intel-9.0-linux*
test_demo_xml: intel-9.0-linux* vc-6_5*
test_demo_xml_dll: intel-9.0-linux* vc-6_5*
test_demo_xml_load: intel-9.0-linux*
test_demo_xml_load_dll: intel-9.0-linux*
test_demo_xml_save: intel-9.0-linux*
test_demo_xml_save_dll: intel-9.0-linux*
test_deque_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_deque_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_deque_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_deque_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_deque_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_deque_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_deque_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_deque_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_deque_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_deque_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_ptr_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_class_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_class_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_derived_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_derived_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_diamond_binary_archive: intel-9.0-linux*
test_diamond_binary_archive_dll: cw-9_4 intel-9.0-linux*
test_diamond_text_archive: intel-9.0-linux*
test_diamond_text_archive_dll: cw-9_4 intel-9.0-linux*
test_diamond_text_warchive: intel-9.0-linux*
test_diamond_text_warchive_dll: cw-9_4 intel-9.0-linux*
test_diamond_xml_archive: intel-9.0-linux*
test_diamond_xml_archive_dll: cw-9_4 intel-9.0-linux*
test_diamond_xml_warchive: intel-9.0-linux*
test_diamond_xml_warchive_dll: cw-9_4 intel-9.0-linux*
test_exported_binary_archive: intel-9.0-linux* vc-6_5*
test_exported_binary_archive_dll: intel-9.0-linux* vc-6_5*
test_exported_text_archive: intel-9.0-linux* vc-6_5*
test_exported_text_archive_dll: intel-9.0-linux* vc-6_5*
test_exported_text_warchive: intel-9.0-linux* vc-6_5*
test_exported_text_warchive_dll: intel-9.0-linux* vc-6_5*
test_exported_xml_archive: intel-9.0-linux* vc-6_5*
test_exported_xml_archive_dll: intel-9.0-linux* vc-6_5*
test_exported_xml_warchive: intel-9.0-linux* vc-6_5*
test_exported_xml_warchive_dll: intel-9.0-linux* vc-6_5*
test_inclusion: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_iterators: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_iterators_base64: cw-8_3 intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_list_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_ptrs_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_ptrs_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_ptrs_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_ptrs_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_ptrs_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_ptrs_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_ptrs_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_ptrs_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_ptrs_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_ptrs_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_list_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_list_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_map_binary_archive: cw-8_3 intel-9.0-linux* qcc-3.3.5-gpp
test_map_binary_archive_dll: cw-9_4 intel-9.0-linux* qcc-3.3.5-gpp
test_map_text_archive: cw-8_3 intel-9.0-linux* qcc-3.3.5-gpp
test_map_text_archive_dll: cw-9_4 intel-9.0-linux* qcc-3.3.5-gpp
test_map_text_warchive: cw-8_3 intel-9.0-linux*
test_map_text_warchive_dll: cw-9_4 intel-9.0-linux*
test_map_xml_archive: cw-8_3 intel-9.0-linux* qcc-3.3.5-gpp vc-6_5*
test_map_xml_archive_dll: cw-9_4 intel-9.0-linux* qcc-3.3.5-gpp vc-6_5*
test_map_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_map_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_mi_binary_archive: intel-9.0-linux*
test_mi_binary_archive_dll: intel-9.0-linux*
test_mi_text_archive: intel-9.0-linux*
test_mi_text_archive_dll: intel-9.0-linux*
test_mi_text_warchive: intel-9.0-linux*
test_mi_text_warchive_dll: intel-9.0-linux*
test_mi_xml_archive: intel-9.0-linux*
test_mi_xml_archive_dll: intel-9.0-linux*
test_mi_xml_warchive: intel-9.0-linux*
test_mi_xml_warchive_dll: intel-9.0-linux*
test_mult_archive_types: intel-9.0-linux*
test_mult_archive_types_dll: intel-9.0-linux*
test_multiple_ptrs_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_multiple_ptrs_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_no_rtti_binary_archive: intel-9.0-linux* vc-6_5*
test_no_rtti_binary_archive_dll: intel-9.0-linux* vc-6_5*
test_no_rtti_text_archive: intel-9.0-linux* vc-6_5*
test_no_rtti_text_archive_dll: intel-9.0-linux* vc-6_5*
test_no_rtti_text_warchive: intel-9.0-linux* vc-6_5*
test_no_rtti_text_warchive_dll: intel-9.0-linux* vc-6_5*
test_no_rtti_xml_archive: intel-9.0-linux* vc-6_5*
test_no_rtti_xml_archive_dll: intel-9.0-linux* vc-6_5*
test_no_rtti_xml_warchive: intel-9.0-linux* vc-6_5*
test_no_rtti_xml_warchive_dll: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_binary_archive: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_binary_archive_dll: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_text_archive: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_text_archive_dll: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_text_warchive: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_text_warchive_dll: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_xml_archive: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_xml_archive_dll: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_xml_warchive: intel-9.0-linux* vc-6_5*
test_non_default_ctor2_xml_warchive_dll: intel-9.0-linux* vc-6_5*
test_non_default_ctor_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_default_ctor_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_default_ctor_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_default_ctor_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_default_ctor_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_default_ctor_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_default_ctor_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_default_ctor_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_default_ctor_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_default_ctor_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_intrusive_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_intrusive_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_intrusive_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_intrusive_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_intrusive_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_intrusive_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_intrusive_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_intrusive_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_non_intrusive_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_non_intrusive_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_null_ptr_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_null_ptr_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_null_ptr_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_null_ptr_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_null_ptr_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_null_ptr_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_null_ptr_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_null_ptr_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_null_ptr_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_null_ptr_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_nvp_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_nvp_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_nvp_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_nvp_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_nvp_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_nvp_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_nvp_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_nvp_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_nvp_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_nvp_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_object_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_object_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_object_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_object_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_object_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_object_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_object_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_object_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_object_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_object_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_optional_binary_archive: cw-8_3 vc-6_5*
test_optional_binary_archive_dll: cw-9_4 vc-6_5*
test_optional_text_archive: cw-8_3 vc-6_5*
test_optional_text_archive_dll: cw-9_4 vc-6_5*
test_optional_text_warchive: cw-8_3 vc-6_5*
test_optional_text_warchive_dll: cw-9_4 vc-6_5*
test_optional_xml_archive: cw-8_3 vc-6_5*
test_optional_xml_archive_dll: cw-9_4 vc-6_5*
test_optional_xml_warchive: cw-8_3 vc-6_5*
test_optional_xml_warchive_dll: cw-9_4 vc-6_5*
test_polymorphic_binary_archive: cw-8_3 vc-6_5*
test_polymorphic_binary_archive_dll: cw-9_4 vc-6_5*
test_polymorphic_text_archive: cw-8_3 vc-6_5*
test_polymorphic_text_archive_dll: cw-9_4 vc-6_5*
test_polymorphic_text_warchive: cw-8_3 vc-6_5*
test_polymorphic_text_warchive_dll: cw-9_4 vc-6_5*
test_polymorphic_xml_archive: cw-8_3 vc-6_5*
test_polymorphic_xml_archive_dll: cw-9_4 vc-6_5*
test_polymorphic_xml_warchive: cw-8_3 vc-6_5*
test_polymorphic_xml_warchive_dll: cw-9_4 vc-6_5*
test_primitive_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_primitive_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_primitive_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_primitive_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_primitive_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_primitive_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_primitive_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_primitive_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_primitive_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_primitive_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_private_ctor: cw-8_3 intel-9.0-linux* vc-6_5*
test_private_ctor_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_recursion_binary_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_recursion_binary_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_recursion_text_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_recursion_text_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_recursion_text_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_recursion_text_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_recursion_xml_archive: cw-8_3 intel-9.0-linux* vc-6_5*
test_recursion_xml_archive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_recursion_xml_warchive: cw-8_3 intel-9.0-linux* vc-6_5*
test_recursion_xml_warchive_dll: cw-9_4 intel-9.0-linux* vc-6_5*
test_registered_binary_archive: intel-9.0-linux* vc-6_5*
test_registered_binary_archive_dll: intel-9.0-linux* vc-6_5*
test_registered_text_archive: intel-9.0-linux* vc-6_5*
test_registered_text_archive_dll: intel-9.0-linux* vc-6_5*
test_registered_text_warchive: intel-9.0-linux* vc-6_5*
test_registered_text_warchive_dll: intel-9.0-linux* vc-6_5*
test_registered_xml_archive: intel-9.0-linux* vc-6_5*
test_registered_xml_archive_dll: intel-9.0-linux* vc-6_5*
test_registered_xml_warchive: intel-9.0-linux* vc-6_5*
test_registered_xml_warchive_dll: intel-9.0-linux* vc-6_5*
test_reset_object_address: cw-8_3 intel-9.0-linux* vc-7_0
test_reset_object_address_dll: cw-9_4 intel-9.0-linux* vc-7_0
test_set_binary_archive: cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* mingw-3_4_2 qcc-3.3.5-gpp vc-6_5*
test_set_binary_archive_dll: cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* mingw-3_4_2 qcc-3.3.5-gpp vc-6_5*
test_set_text_archive: cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* mingw-3_4_2 qcc-3.3.5-gpp vc-6_5*
test_set_text_archive_dll: cw-9_4 gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* mingw-3_4_2 qcc-3.3.5-gpp vc-6_5*
test_set_text_warchive: cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* vc-6_5*
test_set_text_warchive_dll: cw-9_4 gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* vc-6_5*
test_set_xml_archive: cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* mingw-3_4_2 qcc-3.3.5-gpp vc-6_5*
test_set_xml_archive_dll: cw-9_4 gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* mingw-3_4_2 qcc-3.3.5-gpp vc-6_5*
test_set_xml_warchive: cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* vc-6_5*
test_set_xml_warchive_dll: cw-9_4 gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux intel-9.0-linux* vc-6_5*
test_shared_ptr_132_binary_archive: vc-6_5* vc-6_5-stlport
test_shared_ptr_132_binary_archive_dll: vc-6_5*
test_shared_ptr_132_text_archive: vc-6_5* vc-6_5-stlport
test_shared_ptr_132_text_archive_dll: vc-6_5*
test_shared_ptr_132_text_warchive: vc-6_5* vc-6_5-stlport
test_shared_ptr_132_text_warchive_dll: vc-6_5*
test_shared_ptr_132_xml_archive: vc-6_5* vc-6_5-stlport
test_shared_ptr_132_xml_archive_dll: vc-6_5*
test_shared_ptr_132_xml_warchive: vc-6_5* vc-6_5-stlport
test_shared_ptr_132_xml_warchive_dll: vc-6_5*
test_shared_ptr_binary_archive: vc-6_5*
test_shared_ptr_binary_archive_dll: vc-6_5*
test_shared_ptr_text_archive: vc-6_5*
test_shared_ptr_text_archive_dll: vc-6_5*
test_shared_ptr_text_warchive: vc-6_5*
test_shared_ptr_text_warchive_dll: vc-6_5*
test_shared_ptr_xml_archive: vc-6_5*
test_shared_ptr_xml_archive_dll: vc-6_5*
test_shared_ptr_xml_warchive: vc-6_5*
test_shared_ptr_xml_warchive_dll: vc-6_5*
test_simple_class_binary_archive: cw-8_3 vc-6_5*
test_simple_class_binary_archive_dll: cw-9_4 vc-6_5*
test_simple_class_ptr_binary_archive: cw-8_3 vc-6_5*
test_simple_class_ptr_binary_archive_dll: cw-9_4 vc-6_5*
test_simple_class_ptr_text_archive: cw-8_3 vc-6_5*
test_simple_class_ptr_text_archive_dll: cw-9_4 vc-6_5*
test_simple_class_ptr_text_warchive: cw-8_3 vc-6_5*
test_simple_class_ptr_text_warchive_dll: cw-9_4 vc-6_5*
test_simple_class_ptr_xml_archive: cw-8_3 vc-6_5*
test_simple_class_ptr_xml_archive_dll: cw-9_4 vc-6_5*
test_simple_class_ptr_xml_warchive: cw-8_3 vc-6_5*
test_simple_class_ptr_xml_warchive_dll: cw-9_4 vc-6_5*
test_simple_class_text_archive: cw-8_3 vc-6_5*
test_simple_class_text_archive_dll: cw-9_4 vc-6_5*
test_simple_class_text_warchive: cw-8_3 vc-6_5*
test_simple_class_text_warchive_dll: cw-9_4 vc-6_5*
test_simple_class_xml_archive: cw-8_3 vc-6_5*
test_simple_class_xml_archive_dll: cw-9_4 vc-6_5*
test_simple_class_xml_warchive: cw-8_3 vc-6_5*
test_simple_class_xml_warchive_dll: cw-9_4 vc-6_5*
test_smart_cast: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_split_binary_archive: cw-8_3 vc-6_5*
test_split_binary_archive_dll: cw-9_4 vc-6_5*
test_split_text_archive: cw-8_3 vc-6_5*
test_split_text_archive_dll: cw-9_4 vc-6_5*
test_split_text_warchive: cw-8_3 vc-6_5*
test_split_text_warchive_dll: cw-9_4 vc-6_5*
test_split_xml_archive: cw-8_3 vc-6_5*
test_split_xml_archive_dll: cw-9_4 vc-6_5*
test_split_xml_warchive: cw-8_3 vc-6_5*
test_split_xml_warchive_dll: cw-9_4 vc-6_5*
test_static_warning: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_tracking_binary_archive: cw-8_3 vc-6_5*
test_tracking_binary_archive_dll: cw-9_4 vc-6_5*
test_tracking_text_archive: cw-8_3 vc-6_5*
test_tracking_text_archive_dll: cw-9_4 vc-6_5*
test_tracking_text_warchive: cw-8_3 vc-6_5*
test_tracking_text_warchive_dll: cw-9_4 vc-6_5*
test_tracking_xml_archive: cw-8_3 vc-6_5*
test_tracking_xml_archive_dll: cw-9_4 vc-6_5*
test_tracking_xml_warchive: cw-8_3 vc-6_5*
test_tracking_xml_warchive_dll: cw-9_4 vc-6_5*
test_traits_pass: intel-9.0-linux*
test_unregistered_binary_archive: vc-6_5*
test_unregistered_binary_archive_dll: vc-6_5*
test_unregistered_text_archive: vc-6_5*
test_unregistered_text_archive_dll: vc-6_5*
test_unregistered_text_warchive: vc-6_5*
test_unregistered_text_warchive_dll: vc-6_5*
test_unregistered_xml_archive: vc-6_5*
test_unregistered_xml_archive_dll: vc-6_5*
test_unregistered_xml_warchive: vc-6_5*
test_unregistered_xml_warchive_dll: vc-6_5*
test_utf8_codecvt: intel-9.0-linux* qcc-3.3.5-gpp vc-6_5*
test_variant_binary_archive: cw-8_3 vc-6_5* vc-6_5-stlport
test_variant_binary_archive_dll: cw-9_4 vc-6_5*
test_variant_text_archive: cw-8_3 vc-6_5* vc-6_5-stlport
test_variant_text_archive_dll: cw-9_4 vc-6_5*
test_variant_text_warchive: cw-8_3 vc-6_5* vc-6_5-stlport
test_variant_text_warchive_dll: cw-9_4 vc-6_5*
test_variant_xml_archive: cw-8_3 vc-6_5* vc-6_5-stlport
test_variant_xml_archive_dll: cw-9_4 vc-6_5*
test_variant_xml_warchive: cw-8_3 vc-6_5* vc-6_5-stlport
test_variant_xml_warchive_dll: cw-9_4 vc-6_5*
test_vector_binary_archive: cw-8_3 vc-6_5*
test_vector_binary_archive_dll: cw-9_4 vc-6_5*
test_vector_text_archive: cw-8_3 vc-6_5*
test_vector_text_archive_dll: cw-9_4 vc-6_5*
test_vector_text_warchive: cw-8_3 vc-6_5*
test_vector_text_warchive_dll: cw-9_4 vc-6_5*
test_vector_xml_archive: cw-8_3 vc-6_5*
test_vector_xml_archive_dll: cw-9_4 vc-6_5*
test_vector_xml_warchive: cw-8_3 vc-6_5*
test_vector_xml_warchive_dll: cw-9_4 vc-6_5*
test_void_cast: cw-8_3 intel-9.0-linux*
test_void_cast_dll: cw-9_4 intel-9.0-linux*
|spirit|
action_tests: intel-9.0-linux*
action_tests_debug: intel-9.0-linux*
ast_calc_tests: intel-9.0-linux*
ast_calc_tests_debug: intel-9.0-linux*
bug_000008: intel-9.0-linux*
bug_fixes: intel-9.0-linux*
bug_fixes_debug: intel-9.0-linux*
char_strings_test: intel-9.0-linux*
char_strings_test_debug: intel-9.0-linux*
chset_tests: intel-9.0-linux*
chset_tests_debug: intel-9.0-linux*
closure_tests: intel-9.0-linux*
closure_tests_debug: intel-9.0-linux*
confix_tests: intel-9.0-linux*
confix_tests_debug: intel-9.0-linux*
directives_tests: intel-9.0-linux*
directives_tests_debug: intel-9.0-linux*
distinct_tests: intel-9.0-linux*
distinct_tests_debug: intel-9.0-linux*
epsilon_tests: intel-9.0-linux*
epsilon_tests_debug: intel-9.0-linux*
escape_char_parser_tests: intel-9.0-linux*
escape_char_parser_tests_debug: intel-9.0-linux*
exception_tests: intel-9.0-linux*
exception_tests_debug: intel-9.0-linux*
file_iterator_tests: intel-9.0-linux*
file_iterator_tests_debug: intel-9.0-linux*
fixed_size_queue_tests: intel-9.0-linux*
fixed_size_queue_tests_debug: intel-9.0-linux*
for_p_as_parser_tests: intel-9.0-linux*
for_tests: intel-9.0-linux*
for_tests_debug: intel-9.0-linux*
fundamental_tests: intel-9.0-linux*
fundamental_tests_debug: intel-9.0-linux*
grammar_def_test: cw-8_3 intel-9.0-linux*
grammar_def_test_debug: cw-8_3 intel-9.0-linux*
grammar_mt_tests: intel-9.0-linux*
grammar_multi_instance_tst: intel-9.0-linux*
grammar_multi_instance_tst_debug: intel-9.0-linux*
grammar_tests: intel-9.0-linux*
grammar_tests_debug: intel-9.0-linux*
group_match_bug: intel-9.0-linux*
group_match_bug_debug: intel-9.0-linux*
if_p_as_parser_tests: intel-9.0-linux*
if_p_int_as_condition_test: intel-9.0-linux*
if_p_int_as_condition_test_debug: intel-9.0-linux*
if_tests: intel-9.0-linux*
if_tests_debug: intel-9.0-linux*
lazy_tests: intel-9.0-linux*
lazy_tests_debug: intel-9.0-linux*
loops_tests: intel-9.0-linux*
loops_tests_debug: intel-9.0-linux*
match_tests: intel-9.0-linux*
match_tests_debug: intel-9.0-linux*
mix_and_match_trees: intel-9.0-linux*
multi_pass_compile_tests: intel-9.0-linux*
multi_pass_tests: intel-9.0-linux*
multi_pass_tests_debug: intel-9.0-linux*
negated_eps_p_test: intel-9.0-linux*
negated_eps_p_test_debug: intel-9.0-linux*
numerics_tests: intel-9.0-linux*
numerics_tests_debug: intel-9.0-linux*
operators_tests: intel-9.0-linux*
operators_tests_debug: intel-9.0-linux*
owi_mt_tests: intel-9.0-linux*
parametric_tests: intel-9.0-linux*
parametric_tests_debug: intel-9.0-linux*
parser_context_test: intel-9.0-linux*
parser_context_test_debug: intel-9.0-linux*
parser_traits_tests: intel-9.0-linux*
parser_traits_tests_debug: intel-9.0-linux*
position_iterator_tests: intel-9.0-linux*
position_iterator_tests_debug: intel-9.0-linux*
primitives_tests: intel-9.0-linux* intel-9.0-linux*
primitives_tests_debug: intel-9.0-linux*
repeat_ast_tests: intel-9.0-linux*
repeat_ast_tests_debug: intel-9.0-linux*
rule_tests: intel-9.0-linux*
rule_tests_debug: intel-9.0-linux*
scanner_tests: intel-9.0-linux*
scanner_tests_debug: intel-9.0-linux*
scanner_value_type_tests: cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux gcc-4_0-darwin intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 qcc-3.3.5-cpp tru64cxx71-006 vc-7_1 vc-7_1 vc-7_1
scanner_value_type_tests_debug: cw-8_3 cw-9_4 cw-9_5-darwin gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux gcc-3.4.4-linux gcc-3.4.5-linux gcc-3_3-darwin gcc-4.0.2-linux gcc-4_0-darwin intel-9.0-linux* intel-win32-8_1 intel-win32-9_0 qcc-3.3.5-cpp tru64cxx71-006 vc-7_1 vc-7_1 vc-7_1
scoped_lock_tests: intel-9.0-linux*
scoped_lock_tests_debug: intel-9.0-linux*
select_p_with_rule: intel-9.0-linux*
select_p_with_rule_debug: intel-9.0-linux*
sf_bug_720917: intel-9.0-linux*
sf_bug_720917_debug: intel-9.0-linux*
shortest_alternative_tests: intel-9.0-linux*
shortest_alternative_tests_debug: intel-9.0-linux*
subrule_tests: intel-9.0-linux*
subrule_tests_debug: intel-9.0-linux*
switch_problem: intel-9.0-linux*
switch_problem_debug: intel-9.0-linux*
switch_tests_eps_default: intel-9.0-linux*
switch_tests_eps_default_debug: intel-9.0-linux*
switch_tests_general_def: intel-9.0-linux*
switch_tests_general_def_debug: intel-9.0-linux*
switch_tests_single: intel-9.0-linux*
switch_tests_single_debug: intel-9.0-linux*
switch_tests_wo_default: intel-9.0-linux*
switch_tests_wo_default_debug: intel-9.0-linux*
symbols_add_null: intel-9.0-linux*
symbols_add_null_debug: intel-9.0-linux*
symbols_find_null: intel-9.0-linux*
symbols_find_null_debug: intel-9.0-linux*
symbols_tests: intel-9.0-linux*
symbols_tests_debug: intel-9.0-linux*
traverse_tests: intel-9.0-linux*
traverse_tests_debug: intel-9.0-linux*
typeof_actor: cw-8_3 intel-9.0-linux*
typeof_attribute: cw-8_3 intel-9.0-linux*
typeof_core: cw-8_3 intel-9.0-linux*
typeof_debug: cw-8_3 intel-9.0-linux*
typeof_dynamic: cw-8_3 intel-9.0-linux*
typeof_error_handling: cw-8_3 intel-9.0-linux*
typeof_iterator: cw-8_3 intel-9.0-linux*
typeof_symbols: cw-8_3 intel-9.0-linux*
typeof_tree: cw-8_3 intel-9.0-linux*
typeof_utility: cw-8_3 intel-9.0-linux*
while_p_as_parser_tests: intel-9.0-linux*
while_tests: intel-9.0-linux*
while_tests_debug: intel-9.0-linux*
|pool|
test_pool_alloc: intel-9.0-linux* qcc-3.3.5-cpp
|xpressive|
c_traits: intel-9.0-linux*
misc1: intel-9.0-linux*
regress: intel-9.0-linux*
test1: intel-9.0-linux*
test10: intel-9.0-linux*
test10u: intel-9.0-linux*
test1u: intel-9.0-linux*
test2: intel-9.0-linux*
test2u: intel-9.0-linux*
test3: intel-9.0-linux*
test3u: intel-9.0-linux*
test4: intel-9.0-linux*
test4u: intel-9.0-linux*
test5: intel-9.0-linux*
test5u: intel-9.0-linux*
test6: intel-9.0-linux*
test6u: intel-9.0-linux*
test7: intel-9.0-linux*
test7u: intel-9.0-linux*
test8: intel-9.0-linux*
test8u: intel-9.0-linux*
test9: intel-9.0-linux*
test9u: intel-9.0-linux*
test_basic_regex: intel-9.0-linux*
test_cycles: intel-9.0-linux*
test_dynamic: intel-9.0-linux*
test_match_results: intel-9.0-linux*
test_non_char: intel-9.0-linux*
test_regex_algorithms: intel-9.0-linux*
test_regex_compiler: intel-9.0-linux*
test_regex_iterator: intel-9.0-linux*
test_regex_primitives: intel-9.0-linux*
test_regex_token_iterator: intel-9.0-linux*
test_regex_traits: intel-9.0-linux*
test_static: intel-9.0-linux*
|date_time|
testc_local_adjustor: vc-6_5*
testclock: vc-6_5*
testclocks: vc-7_0
testdst_rules: vc-6_5*
testfiletime_functions: vc-6_5*
testgreg_duration_operators: vc-6_5*
testgreg_serialize: cw-8_3
testgreg_serialize_dll: cw-8_3 cw-9_4 intel-win32-8_1 intel-win32-9_0 vc-7_0 vc-7_1 vc-7_1 vc-7_1
testgreg_serialize_xml: cw-8_3
testiterator: vc-6_5*
testlocal_adjustor: vc-6_5*
testlocal_time: vc-7_0
testlocal_time_iterator: vc-7_0
testlocal_time_period: vc-7_0
testmicrosec_time_clock: vc-6_5*
testparse_time: vc-6_5*
testposix_time_zone: vc-7_0
testtime: vc-6_5*
testtime_formatters: vc-6_5*
testtime_period: vc-6_5*
testtime_serialize: cw-8_3 gcc-3.2.3-linux
testtime_serialize_std_config: cw-8_3
testtime_serialize_xml: cw-8_3
testtime_serialize_xml_std_config: cw-8_3
testtz_database: vc-7_0
testwcustom_time_zone: vc-6_5* vc-7_0
testwposix_time_zone: vc-6_5* vc-7_0
|statechart|
CustomReactionTestBoth: intel-9.0-linux*
CustomReactionTestNative: intel-9.0-linux*
CustomReactionTestNormal: intel-9.0-linux*
CustomReactionTestRelaxed: intel-9.0-linux*
DeferralTestBoth: intel-9.0-linux*
DeferralTestNative: intel-9.0-linux*
DeferralTestNormal: intel-9.0-linux*
DeferralTestRelaxed: intel-9.0-linux*
DllTestNative: intel-9.0-linux*
DllTestNormal: intel-9.0-linux*
FifoSchedulerTestBoth: intel-9.0-linux*
FifoSchedulerTestNative: intel-9.0-linux*
FifoSchedulerTestNormal: intel-9.0-linux*
FifoSchedulerTestRelaxed: intel-9.0-linux*
HistoryTestBoth: intel-9.0-linux*
HistoryTestNative: intel-9.0-linux*
HistoryTestNormal: intel-9.0-linux*
HistoryTestRelaxed: intel-9.0-linux*
InStateReactionTestBoth: intel-9.0-linux*
InStateReactionTestNative: intel-9.0-linux*
InStateReactionTestNormal: intel-9.0-linux*
InStateReactionTestRelaxed: intel-9.0-linux*
InvalidResultCopyTestBoth: intel-9.0-linux*
InvalidResultCopyTestNative: intel-9.0-linux*
InvalidResultCopyTestNormal: intel-9.0-linux*
InvalidResultCopyTestRelaxed: intel-9.0-linux*
LibTestNative: intel-9.0-linux*
LibTestNormal: intel-9.0-linux*
StateCastTestBoth: intel-9.0-linux*
StateCastTestNative: intel-9.0-linux*
StateCastTestNormal: intel-9.0-linux*
StateCastTestRelaxed: intel-9.0-linux*
StateIterationTestBoth: intel-9.0-linux*
StateIterationTestNative: intel-9.0-linux*
StateIterationTestNormal: intel-9.0-linux*
StateIterationTestRelaxed: intel-9.0-linux*
TerminationTestBoth: intel-9.0-linux*
TerminationTestNative: intel-9.0-linux*
TerminationTestNormal: intel-9.0-linux*
TerminationTestRelaxed: intel-9.0-linux*
TransitionTestBoth: intel-9.0-linux*
TransitionTestNative: intel-9.0-linux*
TransitionTestNormal: intel-9.0-linux*
TransitionTestRelaxed: intel-9.0-linux*
TypeInfoTestBoth: intel-9.0-linux*
TypeInfoTestNative: intel-9.0-linux*
TypeInfoTestNormal: intel-9.0-linux*
TypeInfoTestRelaxed: intel-9.0-linux*
UnconsumedResultTestBoth: intel-9.0-linux*
UnconsumedResultTestNative: intel-9.0-linux*
UnconsumedResultTestNormal: intel-9.0-linux*
UnconsumedResultTestRelaxed: intel-9.0-linux*
|thread|
test_barrier: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_barrier_lib: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_condition: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_condition_lib: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_mutex: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_mutex_lib: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_once: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_once_lib: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_read_write_mutex: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_read_write_mutex_lib: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_thread: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_thread_lib: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_tss: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_tss_lib: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_xtime: intel-9.0-linux* vc-6_5* vc-6_5-stlport
test_xtime_lib: intel-9.0-linux* vc-6_5* vc-6_5-stlport
|multi_array|
access: cw-8_3
assign: cw-8_3
assign_to_array: cw-8_3
compare: cw-8_3
concept_checks: cw-8_3
constructors: cw-8_3
idxgen1: cw-8_3
index_bases: cw-8_3
iterators: cw-8_3
range1: cw-8_3
reshape: cw-8_3
resize: cw-8_3
slice: cw-8_3
stl_interaction: cw-8_3
storage_order: cw-8_3
|config|
limits_test: intel-9.0-linux*
|algorithm/string|
regex: cw-8_3 vc-7_0
|crc|
crc_test: intel-9.0-linux* vc-6_5* vc-6_5-stlport
|range|
algorithm_example: vc-6_5* vc-6_5-stlport
array: vc-6_5* vc-6_5-stlport
const_ranges: vc-6_5* vc-6_5-stlport
extension_mechanism: vc-6_5* vc-6_5-stlport vc-7_0
iterator_pair: vc-6_5* vc-6_5-stlport
iterator_range: vc-6_5*
partial_workaround: vc-6_5* vc-6_5-stlport
reversible_range: vc-6_5* vc-6_5-stlport
std_container: vc-6_5* vc-6_5-stlport
string: vc-6_5* vc-6_5-stlport
sub_range: vc-6_5*
|ptr_container|
incomplete_type_test: cw-8_3 cw-9_4 cw-9_5-darwin
indirect_fun: cw-8_3 cw-9_4 cw-9_5-darwin
iterator_test: cw-8_3 cw-9_4 cw-9_5-darwin
no_exceptions: cw-8_3 cw-9_4 cw-9_5-darwin
ptr_array: cw-8_3 cw-9_4 cw-9_5-darwin
ptr_deque: cw-8_3 cw-9_4 cw-9_5-darwin
ptr_list: cw-8_3 cw-9_4 cw-9_5-darwin
ptr_map: cw-8_3 cw-9_4 cw-9_5-darwin
ptr_set: cw-8_3 cw-9_4 cw-9_5-darwin
ptr_vector: cw-8_3 cw-9_4 cw-9_5-darwin
serialization: cw-8_3 cw-9_4 cw-9_5-darwin gcc-4.0.2-linux
tree_test: cw-8_3 cw-9_4 cw-9_5-darwin
tut1: cw-8_3 cw-9_4 cw-9_5-darwin
view_example: cw-8_3 cw-9_4 cw-9_5-darwin
|typeof|
data_member_emulation: intel-9.0-linux*
data_member_native: intel-9.0-linux*
function_emulation: intel-9.0-linux*
function_native: intel-9.0-linux*
function_ptr_emulation: intel-9.0-linux*
function_ptr_from_tpl_emulation: intel-9.0-linux*
function_ptr_from_tpl_native: gcc-3.2.3-linux gcc-3.3.6-linux gcc-3.3.6-linux intel-9.0-linux*
function_ptr_native: intel-9.0-linux*
function_ref_emulation: intel-9.0-linux*
function_ref_native: intel-9.0-linux*
lvalue_emulation: gcc-4.0.2-linux
lvalue_native: gcc-4.0.2-linux
member_function_emulation: intel-9.0-linux*
member_function_native: intel-9.0-linux*
modifiers_emulation: intel-9.0-linux*
modifiers_native: intel-9.0-linux*
noncopyable_emulation: intel-9.0-linux*
noncopyable_native: intel-9.0-linux*
odr_emulation: intel-9.0-linux*
std_emulation: intel-9.0-linux*
std_native: intel-9.0-linux*
template_dependent_emulation: intel-9.0-linux*
template_dependent_native: intel-9.0-linux*
template_enum_emulation: intel-9.0-linux*
template_enum_native: intel-9.0-linux*
template_int_emulation: intel-9.0-linux*
template_int_native: intel-9.0-linux*
template_multiword_emulation: intel-9.0-linux*
template_multiword_native: intel-9.0-linux*
template_tpl_emulation: intel-9.0-linux*
template_tpl_native: intel-9.0-linux*
template_type_emulation: intel-9.0-linux*
template_type_native: intel-9.0-linux*
type_emulation: intel-9.0-linux*
type_native: intel-9.0-linux*
|filesystem|
convenience_test: cw-8_3
fstream_test: cw-8_3 intel-win32-8_1 intel-win32-9_0 vc-7_1 vc-7_1 vc-7_1
large_file_support_test: cw-8_3
mbcopy: borland-5_6_4 cw-8_3 vc-6_5* vc-6_5-stlport vc-7_0
mbpath: borland-5_6_4 cw-8_3 vc-6_5* vc-6_5-stlport vc-7_0
operations_test: cw-8_3 gcc-3.3.6-linux gcc-3.4.4-linux vc-6_5* vc-6_5-stlport
operations_test_dll: cw-8_3 gcc-3.3.6-linux gcc-3.4.4-linux vc-6_5* vc-6_5-stlport
path_test: cw-8_3 vc-6_5*
path_test_dll: cw-8_3 vc-6_5*
wide_test: borland-5_6_4 cw-8_3 vc-6_5* vc-6_5-stlport vc-7_0
|utility/enable_if|
constructors: intel-9.0-linux*
dummy_arg_disambiguation: intel-9.0-linux*
lazy: intel-9.0-linux*
lazy_test: intel-9.0-linux*
member_templates: intel-9.0-linux*
namespace_disambiguation: intel-9.0-linux*
no_disambiguation: intel-9.0-linux*
partial_specializations: intel-9.0-linux*
|assign|
basic: vc-6_5* vc-6_5-stlport
email_example: vc-6_5* vc-6_5-stlport
list_inserter: vc-6_5* vc-6_5-stlport
list_of_workaround: vc-6_5* vc-6_5-stlport
multi_index_container: tru64cxx71-006
my_vector_example: vc-6_5* vc-6_5-stlport
ptr_list_inserter: cw-8_3 cw-9_4 cw-9_5-darwin
ptr_list_of: cw-8_3 cw-9_4 cw-9_5-darwin
ptr_map_inserter: cw-8_3 cw-9_4 cw-9_5-darwin vc-7_0
static_list_of: vc-6_5* vc-6_5-stlport
std: vc-6_5* vc-6_5-stlport
|lambda|
algorithm_test: intel-9.0-linux*
bind_tests_advanced: intel-9.0-linux*
bind_tests_simple: intel-9.0-linux*
bind_tests_simple_f_refs: intel-9.0-linux*
bll_and_function: intel-9.0-linux*
constructor_tests: intel-9.0-linux*
control_structures: intel-9.0-linux*
exception_test: intel-9.0-linux*
extending_rt_traits: intel-9.0-linux*
is_instance_of_test: intel-9.0-linux*
lambda_cast_test: intel-9.0-linux*
member_pointer_test: intel-9.0-linux*
operator_tests_simple: intel-9.0-linux*
phoenix_control_structures: intel-9.0-linux*
switch_construct: intel-9.0-linux*
1
0

[Boost-bugs] [ boost-Patches-1438626 ] rational.hpp::gcd returns a negative value sometimes
by SourceForge.net 25 Feb '06
by SourceForge.net 25 Feb '06
25 Feb '06
Patches item #1438626, was opened at 2006-02-25 09:49
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=307586&aid=1438626&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: David Benbennick (dbenbenn)
Assigned to: Nobody/Anonymous (nobody)
Summary: rational.hpp::gcd returns a negative value sometimes
Initial Comment:
boost/rational.hpp provides a gcd function, which is
supposed to be non-negative. It sometimes returns a
negative value, which can cause problems in other parts
of rational.hpp. For example, assuming long is a
4-byte type,
boost::gcd<long>(6, -2147483648)
returns -2. As a result,
boost::rational<long>(-1073741821, 6) +
boost::rational<long>(-1073741827, 6)
produces an invalid rational number, 1073741824/-3,
instead of the correct answer -1073741824/3.
Here is a small patch to fix the problem. Note that
this is how boost/math/common_factor_rt.hpp calculates
the greatest common divisor.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=307586&aid=1438626&group_…
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Boost-bugs mailing list
Boost-bugs(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/boost-bugs
1
0
AFAICT, the confing macro BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS is
not used anywhere outside the config tests that test for this feature!
Should we retire old workarounds like this, that are no longer tested
for?
Or do they add value to the config library, supporting 'customer' code
relying on config for its own feature detection / workarounds?
--
AlisdairM
1
0
----- Mensaje original -----
De: Joseph Wu <josephclwu(a)yahoo.com>
Fecha: Viernes, Febrero 24, 2006 5:34 pm
Asunto: [boost] [multi_index] - Thank You
> Hi Joaquin,
>
> I just would like to send a personal note to say thank you for the
> wonderfuljob on multi-index. I have used it since the early days,
> and found it rather
> useful. Having just read the 1.34 release notes, the addition of
> random-access index and other constant improvements are really
> encouraging.
> Thanks again,
>
> Joseph
Hello Joseph, thank you very much for your compliments, it's
a rewarding feeling to know the lib is appreciated and used
out there.
Some proposals of new features have had low response in the
past, which made me wonder whether the features were worth
including after all. So I'm always eager to receive as much
feedback as possible on how to make Boost.MultiIndex better
suited to its users' needs.
Best regards,
Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
1
0
I am not currently planning to support emulation mode for this compiler.
AFAIU, there are no plans to support this compiler beyond 1.34, so I figured
it doesn't worth the effort (and extra code for workarounds), especially
since the native mode is there.
Please let me know if having emulation mode on cw-8_3 is important for some
reason.
Regards,
Arkadiy
1
0

24 Feb '06
I noticed strange behavior of serialization on VC 8.0. I use
BOOST_CLASS_EXPORT macro in a .cpp file to register a derived class, so that
it can be properly serialized through base class pointer. This works fine,
as long the .obj file resulting from compilation of .cpp file which uses
BOOST_CLASS_EXPORT macro is linked directly to the final executable. But
when I first put this .obj file into a static library, and then link the
library to executable, I start getting unregistered_class exceptions - as if
there was no BOOST_CLASS_EXPORT invoked.
So far I believed that there is no difference between linking to object file
and to static library file containing that object file. It seems my beliefs
were now shattered.
Has anybody else had this issue before?
Thank you,
Marcin
3
2