Boost
Threads by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- 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
- 29 participants
- 33385 discussions
Following requests for a way to detect smart pointers, I've attached below a
small trait that detects whether a type can be dereferenced or not.
At present I can't see any downside to this? Anyone spot any potential
flaws?
John.
4
6
Hi,
(CC'ing Peter and Joel)
I've developed a patch after a somewhat short discussion on the users list for adding the ability to determine the number of arguments required at minimum for a bind expression. It is developed as a non-intrusive patch to bind and fusion. Basic usage is as follows:
#include <boost/bind/min_arity.hpp>
template<typename BindExpression>
void dispatch(BindExpression const & e,boost::mpl::int_<0>)
{
// callable as e()
}
template<typename BindExpression>
void dispatch(BindExpression const & e,boost::mpl::int_<1>)
{
// callable as e(_bi::type_at_index<arg_sequence,1>::type)
}
template<typename BindExpression>
void fn(BindExpression e)
{
typedef boost::min_arity<BindExpression::type min_arity;
dispatch(e,min_arity());
]
The patch is at:
http://sohail.taggedtype.net/software/bind_arg_sequence_patch.tar.bz2
To apply:
cd /path/to/boost/root
tar -xjvf /path/to/bind_arg_sequence_patch.tar.bz2
patch -p0 < bind_arg_sequence.patch
I would appreciate any comments. Currently it lacks documentation and I think the generated specializations could stand to be renamed. If you would like me to go further, please let me know.
Thank you,
Sohail
2
3
I have a question about class escaped_list_separator.
when I read member function do_escape,I found that only three escape sequences are supported, they are \\, \", \n. otherwise, an exception will be thrown. but in fact, a character can be represented in a numeric form, for example, we can use '\137' or '\x05f' to represent '_', I think this is not an exceptional case. why escaped_list_separator not to process this kind of case?
Can anyone please give some help or tips?
thanks
Liang
---------------------------------
Do You Yahoo!?
捇誥轎煤G蚘眊ㄜ笢弊菴珨橈拸嶼僵蚘璃玊閉湮蚘眊
1
0
Valgrind complains
==6809== Conditional jump or move depends on uninitialised value(s)
==6809== at 0x1BAB1CF8: strftime_l (in /lib/libc-2.3.5.so)
==6809== by 0x1B9D83BD: std::__timepunct<char>::_M_put(char*, unsigned, char const*, tm const*) const (in /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/libstdc++.so.5.0.7)
==6809== by 0x1B9AF8FC: std::time_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, tm const*, char, char) const (in /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/libstdc++.so.5.0.7)
==6809== by 0x1B9AF6AB: _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_ (in /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/libstdc++.so.5.0.7)
==6809== by 0x806779C: std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > boost::date_time::gather_month_strings<char>(std::locale const&, bool) (strings_from_facet.hpp:57)
==6809== by 0x8058D68: boost::date_time::format_date_parser<boost::gregorian::date, char>::format_date_parser(std::string const&, std::locale const&) (format_date_parser.hpp:152)
==6809== by 0x8057D0E: boost::date_time::date_input_facet<boost::gregorian::date, char, std::istreambuf_iterator<char, std::char_traits<char> > >::date_input_facet(std::string const&, unsigned) (date_facet.hpp:476)
==6809== by 0x80553D8: boost::date_time::time_input_facet<boost::posix_time::ptime, char, std::istreambuf_iterator<char, std::char_traits<char> > >::time_input_facet(unsigned) (time_facet.hpp:660)
==6809== by 0x80532EB: _ZN5boost10local_timersIcSt11char_traitsIcEEERSt13basic_istreamIT_T0_ES8_RNS0_20local_date_time_baseINS_10posix_time5ptimeENS_9date_time14time_zone_baseISB_cEEEE (
You can get this error by compiling the program io_tutorial.cpp and running it under valgrind.
I fixed the problem by calling memset, to initialize the variable tm_value to 0. I put this at lines 54 and 107 of the header file.
diff produces this output:
54d53
< memset( &tm_value, 0, sizeof(tm_value));
107d105
< memset( &tm_value, 0, sizeof(tm_value));
Now Valgrind is happy
---------------------------------
We won't tell. Get more on shows you hate to love
(and love to hate): Yahoo! TV's Guilty Pleasures list.
1
0
Boost Regression test failures
Report time: 2007-01-21T01:40:48Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-RC_1_34_0/developer/i…
The following platforms have a large number of failures:
borland-5.8.2
intel-linux-9.0
msvc-6.5
2890 failures in 32 libraries (743 are from non-broken platforms)
algorithm/string (0 of 1 failures are from non-broken platforms)
bind (1 of 2 failures are from non-broken platforms)
config (25 of 31 failures are from non-broken platforms)
conversion (0 of 1 failures are from non-broken platforms)
date_time (332 of 434 failures are from non-broken platforms)
filesystem (2 of 4 failures are from non-broken platforms)
function (86 of 103 failures are from non-broken platforms)
functional/hash (0 of 1 failures are from non-broken platforms)
graph (0 of 2 failures are from non-broken platforms)
io (0 of 1 failures are from non-broken platforms)
iostreams (14 of 24 failures are from non-broken platforms)
iterator (3 of 7 failures are from non-broken platforms)
math (1 of 3 failures are from non-broken platforms)
multi_index (0 of 4 failures are from non-broken platforms)
numeric/interval (77 of 93 failures are from non-broken platforms)
optional (0 of 1 failures are from non-broken platforms)
parameter (0 of 2 failures are from non-broken platforms)
program_options (0 of 7 failures are from non-broken platforms)
ptr_container (0 of 1 failures are from non-broken platforms)
python (1 of 61 failures are from non-broken platforms)
random (10 of 11 failures are from non-broken platforms)
rational (0 of 1 failures are from non-broken platforms)
regex (166 of 241 failures are from non-broken platforms)
serialization (0 of 1771 failures are from non-broken platforms)
signals (0 of 6 failures are from non-broken platforms)
smart_ptr (0 of 1 failures are from non-broken platforms)
spirit (14 of 21 failures are from non-broken platforms)
statechart (0 of 2 failures are from non-broken platforms)
test (4 of 36 failures are from non-broken platforms)
thread (1 of 8 failures are from non-broken platforms)
utility (1)
wave (5 of 8 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.
|algorithm/string|
regex: intel-linux-9.0*
|bind|
mem_fn_eq_test: msvc-6.5* msvc-8.0
|config|
abi_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_link_test: intel-linux-9.0*
config_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
limits_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
math_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|conversion|
lexical_cast_test: msvc-6.5*
|date_time|
testc_local_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclocks: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_duration: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_duration_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_facet_new: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_facet_new_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_input_facet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_iterator_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdst_rules: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdst_transition_day_rule: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testduration: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testfiletime_functions: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgenerators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* qcc-3.3.5_gpp
testgenerators_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_cal: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_cal_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_day: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_day_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_duration_operators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_month: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_month_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_dll: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_xml: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testiterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testmicrosec_time_clock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
testparse_date: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testparse_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
teststreams: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_formatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_serialize: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_std_config: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml_std_config: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtz_database: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|filesystem|
operations_test_dll: intel-linux-9.0*
path_test: msvc-8.0
path_test_dll: intel-linux-9.0* msvc-8.0
|function|
allocator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains2_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
function_arith_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_arith_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_n_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lambda_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lib_function_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
stateless_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|functional/hash|
hash_float_test: msvc-6.5*
|graph|
graphviz_test: intel-linux-9.0*
serialize: intel-linux-9.0*
|io|
ios_state_test: borland-5.8.2*
|iostreams|
bzip2_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
code_converter_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
file_descriptor_test: msvc-6.5*
gzip_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
newline_test: borland-5.8.2* msvc-6.5*
regex_filter_test: intel-linux-9.0*
restrict_test: msvc-6.5*
seekable_file_test: msvc-6.5*
zlib_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
|iterator|
filter_iterator_test: borland-5.8.2* msvc-6.5* msvc-8.0
lvalue_concept_fail: borland-5.8.2* msvc-6.5* msvc-7.1 msvc-8.0
|math|
common_factor_test: borland-5.8.2*
complex_test: msvc-8.0
log1p_expm1_test: msvc-6.5*
|multi_index|
test_hash_ops: msvc-6.5*
test_serialization: intel-linux-9.0* msvc-6.5* msvc-6.5*
|numeric/interval|
add: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exn: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_lex: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_set: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_tribool: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
det: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
fmod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
integer: msvc-8.0
mul: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
overflow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pi: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
test_float: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
|optional|
optional_test: borland-5.8.2*
|parameter|
earwicker: msvc-6.5*
python_test: intel-linux-9.0*
|program_options|
cmdline_test_dll: intel-linux-9.0*
options_description_test_dll: intel-linux-9.0*
parsers_test_dll: intel-linux-9.0*
positional_options_test_dll: intel-linux-9.0*
unicode_test_dll: intel-linux-9.0*
variable_map_test_dll: intel-linux-9.0*
winmain_dll: intel-linux-9.0*
|ptr_container|
serialization: intel-linux-9.0*
|python|
andreas_beyer: intel-linux-9.0*
args: intel-linux-9.0*
auto_ptr: intel-linux-9.0*
back_reference: intel-linux-9.0*
bases: intel-linux-9.0*
ben_scott1: intel-linux-9.0*
bienstman1: intel-linux-9.0*
bienstman2: intel-linux-9.0*
bienstman3: intel-linux-9.0*
callbacks: intel-linux-9.0*
const_argument: intel-linux-9.0*
crossmod_exception: intel-linux-9.0*
crossmod_opaque: intel-linux-9.0*
data_members: intel-linux-9.0*
defaults: intel-linux-9.0*
dict: intel-linux-9.0*
docstring: intel-linux-9.0*
enum: intel-linux-9.0*
exception_translator: intel-linux-9.0*
exec: msvc-8.0
extract: intel-linux-9.0*
implicit: intel-linux-9.0*
injected: intel-linux-9.0*
iterator: intel-linux-9.0*
keywords: intel-linux-9.0*
list: intel-linux-9.0*
long: intel-linux-9.0*
minimal: intel-linux-9.0*
multi_arg_constructor: intel-linux-9.0*
nested: intel-linux-9.0*
numpy: intel-linux-9.0*
object: intel-linux-9.0*
opaque: intel-linux-9.0*
operators: intel-linux-9.0*
pearu1: intel-linux-9.0*
pickle1: intel-linux-9.0*
pickle2: intel-linux-9.0*
pickle3: intel-linux-9.0*
pickle4: intel-linux-9.0*
pointee: intel-linux-9.0*
pointer_type_id_test: intel-linux-9.0*
pointer_vector: intel-linux-9.0*
polymorphism: intel-linux-9.0*
polymorphism2: intel-linux-9.0*
polymorphism2_auto_ptr: intel-linux-9.0*
properties: intel-linux-9.0*
raw_ctor: intel-linux-9.0*
return_arg: intel-linux-9.0*
shared_ptr: intel-linux-9.0*
slice: intel-linux-9.0*
staticmethod: intel-linux-9.0*
stl_iterator: intel-linux-9.0*
str: intel-linux-9.0*
test_pointer_adoption: intel-linux-9.0*
try: intel-linux-9.0*
tuple: intel-linux-9.0*
upcast: intel-linux-9.0*
vector_indexing_suite: intel-linux-9.0*
virtual_functions: intel-linux-9.0*
voidptr: intel-linux-9.0*
wrapper_held_type: intel-linux-9.0*
|random|
random_demo: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
random_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|rational|
rational_test: msvc-6.5*
|regex|
bad_expression_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
collate_info: intel-linux-9.0* intel-linux-9.0*
credit_card_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
grep: intel-linux-9.0* intel-linux-9.0*
icu_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
mfc_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
object_cache_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_grep: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_match: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
recursion_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_config_info: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
regex_dll_config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_3: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_4: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_iterator_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_match_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_merge_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_regress: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-6.5*
regex_regress_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0* msvc-6.5*
regex_regress_threaded: intel-linux-9.0* msvc-6.5*
regex_replace_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_search_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_timer: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
static_mutex_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
test_collate_info: intel-linux-9.0*
test_grep: intel-linux-9.0* sun-5.8
unicode_iterator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
wide_posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
|serialization|
test_array_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_load_binary_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_binary_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_text_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_text_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_warchive_dll: borland-5.8.2*
test_class_info_load_xml_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_warchive_dll: borland-5.8.2* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo: borland-5.8.2* borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_exception: borland-5.8.2* borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_fast_archive: borland-5.8.2* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_pimpl: borland-5.8.2* borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_polymorphic: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_portable_archive: borland-5.8.2* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_shared_ptr: borland-5.8.2* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_xml: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_xml_load: borland-5.8.2*
test_demo_xml_load_dll: borland-5.8.2*
test_demo_xml_save: borland-5.8.2* borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_deque_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_text_archive: borland-5.8.2* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_text_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_xml_archive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_xml_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_exported_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_binary_archive: borland-5.8.2* borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_text_archive: borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_text_warchive: borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_mi_binary_archive: borland-5.8.2* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_text_archive: borland-5.8.2* borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_text_warchive: borland-5.8.2* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_xml_archive: borland-5.8.2* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_xml_warchive: borland-5.8.2* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mult_archive_types: borland-5.8.2* borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_multiple_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_private_ctor: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_reset_object_address: borland-5.8.2* borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_set_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_utf8_codecvt: borland-5.8.2*
test_variant_binary_archive: msvc-6.5* msvc-6.5*
test_variant_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_archive: msvc-6.5* msvc-6.5*
test_variant_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_warchive: msvc-6.5* msvc-6.5*
test_variant_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_archive: msvc-6.5* msvc-6.5*
test_variant_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_warchive: msvc-6.5* msvc-6.5*
test_variant_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_void_cast: borland-5.8.2* borland-5.8.2*
test_void_cast_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
|signals|
dead_slot_test: intel-linux-9.0*
deletion_test: intel-linux-9.0*
ordering_test: intel-linux-9.0*
signal_n_test: intel-linux-9.0*
signal_test: intel-linux-9.0*
trackable_test: intel-linux-9.0*
|smart_ptr|
atomic_count_test: msvc-6.5*
|spirit|
action_tests: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
action_tests_debug: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
bug_000008: intel-linux-9.0*
grammar_mt_tests: intel-linux-9.0*
owi_mt_tests: intel-linux-9.0*
scoped_lock_tests: intel-linux-9.0*
scoped_lock_tests_debug: intel-linux-9.0*
symbols_add_null: msvc-7.1 msvc-8.0
symbols_add_null_debug: msvc-7.1 msvc-8.0
|statechart|
DllTestNative: intel-linux-9.0*
DllTestNormal: intel-linux-9.0*
|test|
boost_check_equal_str: intel-linux-9.0* msvc-6.5* msvc-6.5*
errors_handling_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
fixed_mapping_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
output_test_stream_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
parameterized_test_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
prg_exec_fail2: darwin-4.0.1
prg_exec_fail3: borland-5.8.2* cw-9.4 msvc-6.5* msvc-7.1 msvc-8.0
result_report_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_case_template_test: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_fp_comparisons: intel-linux-9.0*
test_tools_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
token_iterator_test: intel-linux-9.0*
|thread|
test_barrier: intel-linux-9.0*
test_condition: intel-linux-9.0*
test_mutex: intel-linux-9.0*
test_once: intel-linux-9.0*
test_thread: intel-linux-9.0*
test_tss: intel-linux-9.0*
test_tss_lib: msvc-8.0
test_xtime: intel-linux-9.0*
|utility|
operators_test: gcc-3.4.5_linux_x86_64
|wave|
test_re2c_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
test_slex_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
testwave: msvc-8.0
testwave_dll: hp_cxx-71_006_tru64 intel-linux-9.0* sun-5.8
1
0
Hi all,
A miniature project this week was started by me this week (I was bored?) to determine the minimum arity of a bind expression. On Peter's and Joel's suggestion, I made the changes non-intrusive: i.e. the listN's used to hold the argument sequence are fusion forward sequences. Currently there is no runtime component and I suspect there will need to be some generated "at" specializations, but I don't expect this to be too difficult. So anyway two-point-one questions:
1) How do I get the type of a bind expression as a metafunction (or something) so that I can have a metafunction (or something) to return the min_arity of a bind expression?
2) How do I make a patch that includes my added files? cvs diff only shows diffs to existing files
2.1) With 2) can someone help me make the fusion sequence a mpl sequence? I can't seem to get this to work properly
Thanks!
Sohail
PS: I'm a bit shaky on the whole metafunction concept as my attempts to get the mpl book were thwarted, hence the "or something" :) Go easy on me!
(Below is the current implementation of min_arity)
// TODO: make this into some sort of metafunction - or something
// probably will have to always have a function to deduce the bind
// expression type but the rest of it can probably be moved
template<int MinArity,typename BindExpression>
void min_arity(BindExpression const &)
{
// should be a meta function of some sort
typedef typename placeholders<BindExpression>::placeholders_list
placeholders_list;
// a list of... argument positions
typedef typename result_of::transform<
placeholders_list,
argument_position
>::type arg_positions;
// the maximum element
typedef typename mpl::max_element<
arg_positions>::type iter;
// if there are no placeholders
typedef typename result_of::empty<arg_positions>::type no_placeholders;
// can only dereference iterator if there were placeholders => atleast one argument position
typedef typename mpl::eval_if<
no_placeholders,
mpl::int_<0>,
mpl::deref<iter>
>::type min_arity_type;
BOOST_MPL_ASSERT(( boost::is_same<min_arity_type,mpl::int_<MinArity> >));
}
MPL_TEST_CASE()
{
min_arity<0>(boost::bind(&fn_0));
min_arity<5>(boost::bind(&fn_2,_4,_5));
min_arity<1>(boost::bind(&fn_1,_1));
int a=9;
min_arity<2>(boost::bind(&fn_3,a,_1,_2));
min_arity<3>(boost::bind(&fn_3,_1,_2,_3));
min_arity<4>(boost::bind(&fn_3,a,a,_4));
min_arity<9>(boost::bind(&fn_3,_7,_9,_8));
}
1
1
Boost Regression test failures
Report time: 2007-01-20T05:01:07Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-RC_1_34_0/developer/i…
The following platforms have a large number of failures:
borland-5.8.2
intel-linux-9.0
msvc-6.5
2859 failures in 27 libraries (739 are from non-broken platforms)
algorithm/string (0 of 1 failures are from non-broken platforms)
bind (1)
config (25 of 31 failures are from non-broken platforms)
date_time (332 of 433 failures are from non-broken platforms)
dynamic_bitset (0 of 1 failures are from non-broken platforms)
filesystem (2 of 4 failures are from non-broken platforms)
function (86 of 103 failures are from non-broken platforms)
graph (0 of 2 failures are from non-broken platforms)
iostreams (14 of 19 failures are from non-broken platforms)
iterator (2)
math (1)
multi_index (0 of 3 failures are from non-broken platforms)
numeric/interval (77 of 91 failures are from non-broken platforms)
parameter (0 of 1 failures are from non-broken platforms)
program_options (0 of 7 failures are from non-broken platforms)
ptr_container (0 of 1 failures are from non-broken platforms)
python (1 of 61 failures are from non-broken platforms)
random (10 of 11 failures are from non-broken platforms)
regex (166 of 240 failures are from non-broken platforms)
serialization (0 of 1770 failures are from non-broken platforms)
signals (0 of 6 failures are from non-broken platforms)
spirit (12 of 19 failures are from non-broken platforms)
statechart (0 of 2 failures are from non-broken platforms)
test (3 of 32 failures are from non-broken platforms)
thread (1 of 8 failures are from non-broken platforms)
utility (1)
wave (5 of 8 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.
|algorithm/string|
regex: intel-linux-9.0*
|bind|
mem_fn_eq_test: msvc-8.0
|config|
abi_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_link_test: intel-linux-9.0*
config_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
limits_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
math_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|date_time|
testc_local_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclocks: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_duration: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_duration_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_facet_new: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_facet_new_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_input_facet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_iterator_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdst_rules: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdst_transition_day_rule: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testduration: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testfiletime_functions: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgenerators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* qcc-3.3.5_gpp
testgenerators_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_cal: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_cal_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_day: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_day_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_duration_operators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_month: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_month_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_dll: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_xml: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testiterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testmicrosec_time_clock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
testparse_date: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testparse_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
teststreams: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_formatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_serialize: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_std_config: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml_std_config: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtz_database: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|dynamic_bitset|
dyn_bitset_unit_tests2: borland-5.8.2*
|filesystem|
operations_test_dll: intel-linux-9.0*
path_test: msvc-8.0
path_test_dll: intel-linux-9.0* msvc-8.0
|function|
allocator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains2_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
function_arith_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_arith_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_n_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lambda_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lib_function_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
stateless_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|graph|
graphviz_test: intel-linux-9.0*
serialize: intel-linux-9.0*
|iostreams|
bzip2_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
code_converter_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
gzip_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
regex_filter_test: intel-linux-9.0*
zlib_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
|iterator|
filter_iterator_test: msvc-8.0
lvalue_concept_fail: msvc-8.0
|math|
complex_test: msvc-8.0
|multi_index|
test_serialization: intel-linux-9.0* msvc-6.5* msvc-6.5*
|numeric/interval|
add: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exn: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_lex: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_set: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_tribool: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
det: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
fmod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
integer: msvc-8.0
mul: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
overflow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pi: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
test_float: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
|parameter|
python_test: intel-linux-9.0*
|program_options|
cmdline_test_dll: intel-linux-9.0*
options_description_test_dll: intel-linux-9.0*
parsers_test_dll: intel-linux-9.0*
positional_options_test_dll: intel-linux-9.0*
unicode_test_dll: intel-linux-9.0*
variable_map_test_dll: intel-linux-9.0*
winmain_dll: intel-linux-9.0*
|ptr_container|
serialization: intel-linux-9.0*
|python|
andreas_beyer: intel-linux-9.0*
args: intel-linux-9.0*
auto_ptr: intel-linux-9.0*
back_reference: intel-linux-9.0*
bases: intel-linux-9.0*
ben_scott1: intel-linux-9.0*
bienstman1: intel-linux-9.0*
bienstman2: intel-linux-9.0*
bienstman3: intel-linux-9.0*
callbacks: intel-linux-9.0*
const_argument: intel-linux-9.0*
crossmod_exception: intel-linux-9.0*
crossmod_opaque: intel-linux-9.0*
data_members: intel-linux-9.0*
defaults: intel-linux-9.0*
dict: intel-linux-9.0*
docstring: intel-linux-9.0*
enum: intel-linux-9.0*
exception_translator: intel-linux-9.0*
exec: msvc-8.0
extract: intel-linux-9.0*
implicit: intel-linux-9.0*
injected: intel-linux-9.0*
iterator: intel-linux-9.0*
keywords: intel-linux-9.0*
list: intel-linux-9.0*
long: intel-linux-9.0*
minimal: intel-linux-9.0*
multi_arg_constructor: intel-linux-9.0*
nested: intel-linux-9.0*
numpy: intel-linux-9.0*
object: intel-linux-9.0*
opaque: intel-linux-9.0*
operators: intel-linux-9.0*
pearu1: intel-linux-9.0*
pickle1: intel-linux-9.0*
pickle2: intel-linux-9.0*
pickle3: intel-linux-9.0*
pickle4: intel-linux-9.0*
pointee: intel-linux-9.0*
pointer_type_id_test: intel-linux-9.0*
pointer_vector: intel-linux-9.0*
polymorphism: intel-linux-9.0*
polymorphism2: intel-linux-9.0*
polymorphism2_auto_ptr: intel-linux-9.0*
properties: intel-linux-9.0*
raw_ctor: intel-linux-9.0*
return_arg: intel-linux-9.0*
shared_ptr: intel-linux-9.0*
slice: intel-linux-9.0*
staticmethod: intel-linux-9.0*
stl_iterator: intel-linux-9.0*
str: intel-linux-9.0*
test_pointer_adoption: intel-linux-9.0*
try: intel-linux-9.0*
tuple: intel-linux-9.0*
upcast: intel-linux-9.0*
vector_indexing_suite: intel-linux-9.0*
virtual_functions: intel-linux-9.0*
voidptr: intel-linux-9.0*
wrapper_held_type: intel-linux-9.0*
|random|
random_demo: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
random_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|regex|
bad_expression_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
collate_info: intel-linux-9.0* intel-linux-9.0*
credit_card_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
grep: intel-linux-9.0* intel-linux-9.0*
icu_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
mfc_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
object_cache_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_grep: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_match: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
recursion_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_config_info: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
regex_dll_config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_3: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_4: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_iterator_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_match_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_merge_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_regress: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
regex_regress_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_regress_threaded: intel-linux-9.0* msvc-6.5*
regex_replace_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_search_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_timer: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
static_mutex_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
test_collate_info: intel-linux-9.0*
test_grep: intel-linux-9.0* sun-5.8
unicode_iterator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
wide_posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
|serialization|
test_array_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_load_binary_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_binary_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_text_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_text_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_warchive_dll: borland-5.8.2*
test_class_info_load_xml_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_warchive_dll: borland-5.8.2* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo: borland-5.8.2* borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_exception: borland-5.8.2* borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_fast_archive: borland-5.8.2* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_pimpl: borland-5.8.2* borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_polymorphic: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_portable_archive: borland-5.8.2* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_shared_ptr: borland-5.8.2* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_xml: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_xml_load: borland-5.8.2*
test_demo_xml_load_dll: borland-5.8.2*
test_demo_xml_save: borland-5.8.2* borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_deque_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_text_archive: borland-5.8.2* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_text_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_xml_archive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_xml_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_exported_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_binary_archive: borland-5.8.2* borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_text_archive: borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_text_warchive: borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_mi_binary_archive: borland-5.8.2* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_text_archive: borland-5.8.2* borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_text_warchive: borland-5.8.2* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_xml_archive: borland-5.8.2* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_xml_warchive: borland-5.8.2* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mult_archive_types: borland-5.8.2* borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_multiple_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_private_ctor: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_reset_object_address: borland-5.8.2* borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_set_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_binary_archive: msvc-6.5* msvc-6.5*
test_variant_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_archive: msvc-6.5* msvc-6.5*
test_variant_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_warchive: msvc-6.5* msvc-6.5*
test_variant_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_archive: msvc-6.5* msvc-6.5*
test_variant_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_warchive: msvc-6.5* msvc-6.5*
test_variant_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_void_cast: borland-5.8.2* borland-5.8.2*
test_void_cast_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
|signals|
dead_slot_test: intel-linux-9.0*
deletion_test: intel-linux-9.0*
ordering_test: intel-linux-9.0*
signal_n_test: intel-linux-9.0*
signal_test: intel-linux-9.0*
trackable_test: intel-linux-9.0*
|spirit|
action_tests: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
action_tests_debug: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
bug_000008: intel-linux-9.0*
grammar_mt_tests: intel-linux-9.0*
owi_mt_tests: intel-linux-9.0*
scoped_lock_tests: intel-linux-9.0*
scoped_lock_tests_debug: intel-linux-9.0*
symbols_add_null: msvc-8.0
symbols_add_null_debug: msvc-8.0
|statechart|
DllTestNative: intel-linux-9.0*
DllTestNormal: intel-linux-9.0*
|test|
boost_check_equal_str: intel-linux-9.0* msvc-6.5* msvc-6.5*
errors_handling_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
fixed_mapping_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
output_test_stream_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
parameterized_test_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
prg_exec_fail2: darwin-4.0.1
prg_exec_fail3: cw-9.4 msvc-8.0
result_report_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_case_template_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_fp_comparisons: intel-linux-9.0*
test_tools_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
token_iterator_test: intel-linux-9.0*
|thread|
test_barrier: intel-linux-9.0*
test_condition: intel-linux-9.0*
test_mutex: intel-linux-9.0*
test_once: intel-linux-9.0*
test_thread: intel-linux-9.0*
test_tss: intel-linux-9.0*
test_tss_lib: msvc-8.0
test_xtime: intel-linux-9.0*
|utility|
operators_test: gcc-3.4.5_linux_x86_64
|wave|
test_re2c_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
test_slex_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
testwave: msvc-8.0
testwave_dll: hp_cxx-71_006_tru64 intel-linux-9.0* sun-5.8
1
0
Boost Regression test failures
Report time: 2007-01-19T09:48:01Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-RC_1_34_0/developer/i…
The following platforms have a large number of failures:
borland-5.8.2
intel-linux-9.0
msvc-6.5
2448 failures in 30 libraries (739 are from non-broken platforms)
algorithm/string (0 of 1 failures are from non-broken platforms)
bind (1 of 2 failures are from non-broken platforms)
config (25 of 31 failures are from non-broken platforms)
conversion (0 of 1 failures are from non-broken platforms)
date_time (332 of 426 failures are from non-broken platforms)
filesystem (2 of 4 failures are from non-broken platforms)
function (86 of 103 failures are from non-broken platforms)
functional/hash (0 of 1 failures are from non-broken platforms)
graph (0 of 2 failures are from non-broken platforms)
iostreams (14 of 23 failures are from non-broken platforms)
iterator (2 of 4 failures are from non-broken platforms)
math (1 of 2 failures are from non-broken platforms)
multi_index (0 of 4 failures are from non-broken platforms)
numeric/interval (77 of 91 failures are from non-broken platforms)
parameter (0 of 2 failures are from non-broken platforms)
program_options (0 of 7 failures are from non-broken platforms)
ptr_container (0 of 1 failures are from non-broken platforms)
python (1 of 61 failures are from non-broken platforms)
random (10 of 11 failures are from non-broken platforms)
rational (0 of 1 failures are from non-broken platforms)
regex (166 of 241 failures are from non-broken platforms)
serialization (0 of 1351 failures are from non-broken platforms)
signals (0 of 6 failures are from non-broken platforms)
smart_ptr (0 of 1 failures are from non-broken platforms)
spirit (12 of 19 failures are from non-broken platforms)
statechart (0 of 2 failures are from non-broken platforms)
test (3 of 33 failures are from non-broken platforms)
thread (1 of 8 failures are from non-broken platforms)
utility (1)
wave (5 of 8 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.
|algorithm/string|
regex: intel-linux-9.0*
|bind|
mem_fn_eq_test: msvc-6.5* msvc-8.0
|config|
abi_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_link_test: intel-linux-9.0*
config_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
limits_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
math_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|conversion|
lexical_cast_test: msvc-6.5*
|date_time|
testc_local_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclocks: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_duration: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_duration_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_facet_new: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_facet_new_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_input_facet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_iterator_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdst_rules: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdst_transition_day_rule: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testduration: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testfiletime_functions: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgenerators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* qcc-3.3.5_gpp
testgenerators_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_cal: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_cal_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_day: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_day_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_duration_operators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_month: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_month_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_dll: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_xml: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testiterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testmicrosec_time_clock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
testparse_date: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testparse_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
teststreams: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_formatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_serialize: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_std_config: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml_std_config: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtz_database: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|filesystem|
operations_test_dll: intel-linux-9.0*
path_test: msvc-8.0
path_test_dll: intel-linux-9.0* msvc-8.0
|function|
allocator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains2_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
function_arith_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_arith_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_n_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lambda_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lib_function_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
stateless_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|functional/hash|
hash_float_test: msvc-6.5*
|graph|
graphviz_test: intel-linux-9.0*
serialize: intel-linux-9.0*
|iostreams|
bzip2_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
code_converter_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
file_descriptor_test: msvc-6.5*
gzip_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
newline_test: msvc-6.5*
regex_filter_test: intel-linux-9.0*
restrict_test: msvc-6.5*
seekable_file_test: msvc-6.5*
zlib_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
|iterator|
filter_iterator_test: msvc-6.5* msvc-8.0
lvalue_concept_fail: msvc-6.5* msvc-8.0
|math|
complex_test: msvc-8.0
log1p_expm1_test: msvc-6.5*
|multi_index|
test_hash_ops: msvc-6.5*
test_serialization: intel-linux-9.0* msvc-6.5* msvc-6.5*
|numeric/interval|
add: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exn: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_lex: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_set: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_tribool: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
det: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
fmod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
integer: msvc-8.0
mul: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
overflow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pi: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
test_float: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
|parameter|
earwicker: msvc-6.5*
python_test: intel-linux-9.0*
|program_options|
cmdline_test_dll: intel-linux-9.0*
options_description_test_dll: intel-linux-9.0*
parsers_test_dll: intel-linux-9.0*
positional_options_test_dll: intel-linux-9.0*
unicode_test_dll: intel-linux-9.0*
variable_map_test_dll: intel-linux-9.0*
winmain_dll: intel-linux-9.0*
|ptr_container|
serialization: intel-linux-9.0*
|python|
andreas_beyer: intel-linux-9.0*
args: intel-linux-9.0*
auto_ptr: intel-linux-9.0*
back_reference: intel-linux-9.0*
bases: intel-linux-9.0*
ben_scott1: intel-linux-9.0*
bienstman1: intel-linux-9.0*
bienstman2: intel-linux-9.0*
bienstman3: intel-linux-9.0*
callbacks: intel-linux-9.0*
const_argument: intel-linux-9.0*
crossmod_exception: intel-linux-9.0*
crossmod_opaque: intel-linux-9.0*
data_members: intel-linux-9.0*
defaults: intel-linux-9.0*
dict: intel-linux-9.0*
docstring: intel-linux-9.0*
enum: intel-linux-9.0*
exception_translator: intel-linux-9.0*
exec: msvc-8.0
extract: intel-linux-9.0*
implicit: intel-linux-9.0*
injected: intel-linux-9.0*
iterator: intel-linux-9.0*
keywords: intel-linux-9.0*
list: intel-linux-9.0*
long: intel-linux-9.0*
minimal: intel-linux-9.0*
multi_arg_constructor: intel-linux-9.0*
nested: intel-linux-9.0*
numpy: intel-linux-9.0*
object: intel-linux-9.0*
opaque: intel-linux-9.0*
operators: intel-linux-9.0*
pearu1: intel-linux-9.0*
pickle1: intel-linux-9.0*
pickle2: intel-linux-9.0*
pickle3: intel-linux-9.0*
pickle4: intel-linux-9.0*
pointee: intel-linux-9.0*
pointer_type_id_test: intel-linux-9.0*
pointer_vector: intel-linux-9.0*
polymorphism: intel-linux-9.0*
polymorphism2: intel-linux-9.0*
polymorphism2_auto_ptr: intel-linux-9.0*
properties: intel-linux-9.0*
raw_ctor: intel-linux-9.0*
return_arg: intel-linux-9.0*
shared_ptr: intel-linux-9.0*
slice: intel-linux-9.0*
staticmethod: intel-linux-9.0*
stl_iterator: intel-linux-9.0*
str: intel-linux-9.0*
test_pointer_adoption: intel-linux-9.0*
try: intel-linux-9.0*
tuple: intel-linux-9.0*
upcast: intel-linux-9.0*
vector_indexing_suite: intel-linux-9.0*
virtual_functions: intel-linux-9.0*
voidptr: intel-linux-9.0*
wrapper_held_type: intel-linux-9.0*
|random|
random_demo: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
random_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|rational|
rational_test: msvc-6.5*
|regex|
bad_expression_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
collate_info: intel-linux-9.0* intel-linux-9.0*
credit_card_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
grep: intel-linux-9.0* intel-linux-9.0*
icu_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
mfc_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
object_cache_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_grep: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_match: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
recursion_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_config_info: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
regex_dll_config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_3: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_4: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_iterator_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_match_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_merge_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_regress: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-6.5*
regex_regress_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0* msvc-6.5*
regex_regress_threaded: intel-linux-9.0* msvc-6.5*
regex_replace_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_search_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_timer: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
static_mutex_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
test_collate_info: intel-linux-9.0*
test_grep: intel-linux-9.0* sun-5.8
unicode_iterator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
wide_posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
|serialization|
test_array_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo: borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_dll: borland-5.8.2* intel-linux-9.0*
test_demo_exception: borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* intel-linux-9.0*
test_demo_fast_archive: borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* intel-linux-9.0*
test_demo_pimpl: borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* intel-linux-9.0*
test_demo_polymorphic: borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_portable_archive: borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* intel-linux-9.0*
test_demo_shared_ptr: borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* intel-linux-9.0*
test_demo_xml: borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_xml_save: borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* intel-linux-9.0*
test_deque_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_text_archive: borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_text_warchive: borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_xml_archive: borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_xml_warchive: borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_exported_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_binary_archive: borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_map_text_archive: borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_map_text_warchive: borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_map_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_mi_binary_archive: borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_text_archive: borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_text_warchive: borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_xml_archive: borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_xml_warchive: borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_mult_archive_types: borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* intel-linux-9.0*
test_multiple_ptrs_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_private_ctor: borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_reset_object_address: borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* intel-linux-9.0*
test_set_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_binary_archive: msvc-6.5* msvc-6.5*
test_variant_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_archive: msvc-6.5* msvc-6.5*
test_variant_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_warchive: msvc-6.5* msvc-6.5*
test_variant_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_archive: msvc-6.5* msvc-6.5*
test_variant_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_warchive: msvc-6.5* msvc-6.5*
test_variant_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_void_cast: borland-5.8.2*
test_void_cast_dll: borland-5.8.2* intel-linux-9.0*
|signals|
dead_slot_test: intel-linux-9.0*
deletion_test: intel-linux-9.0*
ordering_test: intel-linux-9.0*
signal_n_test: intel-linux-9.0*
signal_test: intel-linux-9.0*
trackable_test: intel-linux-9.0*
|smart_ptr|
atomic_count_test: msvc-6.5*
|spirit|
action_tests: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
action_tests_debug: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
bug_000008: intel-linux-9.0*
grammar_mt_tests: intel-linux-9.0*
owi_mt_tests: intel-linux-9.0*
scoped_lock_tests: intel-linux-9.0*
scoped_lock_tests_debug: intel-linux-9.0*
symbols_add_null: msvc-8.0
symbols_add_null_debug: msvc-8.0
|statechart|
DllTestNative: intel-linux-9.0*
DllTestNormal: intel-linux-9.0*
|test|
boost_check_equal_str: intel-linux-9.0* msvc-6.5* msvc-6.5*
errors_handling_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
fixed_mapping_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
output_test_stream_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
parameterized_test_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
prg_exec_fail2: darwin-4.0.1
prg_exec_fail3: cw-9.4 msvc-6.5* msvc-8.0
result_report_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_case_template_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_fp_comparisons: intel-linux-9.0*
test_tools_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
token_iterator_test: intel-linux-9.0*
|thread|
test_barrier: intel-linux-9.0*
test_condition: intel-linux-9.0*
test_mutex: intel-linux-9.0*
test_once: intel-linux-9.0*
test_thread: intel-linux-9.0*
test_tss: intel-linux-9.0*
test_tss_lib: msvc-8.0
test_xtime: intel-linux-9.0*
|utility|
operators_test: gcc-3.4.5_linux_x86_64
|wave|
test_re2c_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
test_slex_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
testwave: msvc-8.0
testwave_dll: hp_cxx-71_006_tru64 intel-linux-9.0* sun-5.8
1
0
I'm attempting to port my application to solaris10 running on amd64
processor (using gcc 4.1.1) and endian.hpp doesn't adapt to that
environment.
Shouldn't there be a check for defined(__amd64) || defined(__amd64__) to
account for this little-endian environment?
If so, is it too late to get this into 1.34?
1
0
Boost Regression test failures
Report time: 2007-01-18T02:33:43Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-RC_1_34_0/developer/i…
The following platforms have a large number of failures:
borland-5.8.2
intel-linux-9.0
msvc-6.5
2449 failures in 30 libraries (740 are from non-broken platforms)
algorithm/string (1 of 2 failures are from non-broken platforms)
bind (1 of 2 failures are from non-broken platforms)
config (25 of 31 failures are from non-broken platforms)
conversion (0 of 1 failures are from non-broken platforms)
date_time (332 of 426 failures are from non-broken platforms)
filesystem (2 of 4 failures are from non-broken platforms)
function (86 of 103 failures are from non-broken platforms)
functional/hash (0 of 1 failures are from non-broken platforms)
graph (0 of 2 failures are from non-broken platforms)
iostreams (14 of 23 failures are from non-broken platforms)
iterator (2 of 4 failures are from non-broken platforms)
math (1 of 2 failures are from non-broken platforms)
multi_index (0 of 4 failures are from non-broken platforms)
numeric/interval (77 of 91 failures are from non-broken platforms)
parameter (0 of 2 failures are from non-broken platforms)
program_options (0 of 7 failures are from non-broken platforms)
ptr_container (0 of 1 failures are from non-broken platforms)
python (1 of 61 failures are from non-broken platforms)
random (10 of 11 failures are from non-broken platforms)
rational (0 of 1 failures are from non-broken platforms)
regex (166 of 241 failures are from non-broken platforms)
serialization (0 of 1351 failures are from non-broken platforms)
signals (0 of 6 failures are from non-broken platforms)
smart_ptr (0 of 1 failures are from non-broken platforms)
spirit (12 of 19 failures are from non-broken platforms)
statechart (0 of 2 failures are from non-broken platforms)
test (3 of 33 failures are from non-broken platforms)
thread (1 of 8 failures are from non-broken platforms)
utility (1)
wave (5 of 8 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.
|algorithm/string|
regex: intel-linux-9.0*
replace: msvc-8.0
|bind|
mem_fn_eq_test: msvc-6.5* msvc-8.0
|config|
abi_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_link_test: intel-linux-9.0*
config_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
limits_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
math_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|conversion|
lexical_cast_test: msvc-6.5*
|date_time|
testc_local_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclocks: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_duration: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_duration_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_facet_new: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_facet_new_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_input_facet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_iterator_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdst_rules: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdst_transition_day_rule: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testduration: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testfiletime_functions: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgenerators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* qcc-3.3.5_gpp
testgenerators_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_cal: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_cal_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_day: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_day_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_duration_operators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_month: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_month_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_dll: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_xml: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testiterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testmicrosec_time_clock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
testparse_date: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testparse_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
teststreams: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_formatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_serialize: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_std_config: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml_std_config: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtz_database: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|filesystem|
operations_test_dll: intel-linux-9.0*
path_test: msvc-8.0
path_test_dll: intel-linux-9.0* msvc-8.0
|function|
allocator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains2_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
function_arith_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_arith_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_n_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lambda_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lib_function_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
stateless_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|functional/hash|
hash_float_test: msvc-6.5*
|graph|
graphviz_test: intel-linux-9.0*
serialize: intel-linux-9.0*
|iostreams|
bzip2_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
code_converter_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
file_descriptor_test: msvc-6.5*
gzip_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
newline_test: msvc-6.5*
regex_filter_test: intel-linux-9.0*
restrict_test: msvc-6.5*
seekable_file_test: msvc-6.5*
zlib_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
|iterator|
filter_iterator_test: msvc-6.5* msvc-8.0
lvalue_concept_fail: msvc-6.5* msvc-8.0
|math|
complex_test: msvc-8.0
log1p_expm1_test: msvc-6.5*
|multi_index|
test_hash_ops: msvc-6.5*
test_serialization: intel-linux-9.0* msvc-6.5* msvc-6.5*
|numeric/interval|
add: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exn: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_lex: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_set: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_tribool: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
det: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
fmod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
integer: msvc-8.0
mul: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
overflow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pi: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
test_float: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
|parameter|
earwicker: msvc-6.5*
python_test: intel-linux-9.0*
|program_options|
cmdline_test_dll: intel-linux-9.0*
options_description_test_dll: intel-linux-9.0*
parsers_test_dll: intel-linux-9.0*
positional_options_test_dll: intel-linux-9.0*
unicode_test_dll: intel-linux-9.0*
variable_map_test_dll: intel-linux-9.0*
winmain_dll: intel-linux-9.0*
|ptr_container|
serialization: intel-linux-9.0*
|python|
andreas_beyer: intel-linux-9.0*
args: intel-linux-9.0*
auto_ptr: intel-linux-9.0*
back_reference: intel-linux-9.0*
bases: intel-linux-9.0*
ben_scott1: intel-linux-9.0*
bienstman1: intel-linux-9.0*
bienstman2: intel-linux-9.0*
bienstman3: intel-linux-9.0*
callbacks: intel-linux-9.0*
const_argument: intel-linux-9.0*
crossmod_exception: intel-linux-9.0*
crossmod_opaque: intel-linux-9.0*
data_members: intel-linux-9.0*
defaults: intel-linux-9.0*
dict: intel-linux-9.0*
docstring: intel-linux-9.0*
enum: intel-linux-9.0*
exception_translator: intel-linux-9.0*
exec: msvc-8.0
extract: intel-linux-9.0*
implicit: intel-linux-9.0*
injected: intel-linux-9.0*
iterator: intel-linux-9.0*
keywords: intel-linux-9.0*
list: intel-linux-9.0*
long: intel-linux-9.0*
minimal: intel-linux-9.0*
multi_arg_constructor: intel-linux-9.0*
nested: intel-linux-9.0*
numpy: intel-linux-9.0*
object: intel-linux-9.0*
opaque: intel-linux-9.0*
operators: intel-linux-9.0*
pearu1: intel-linux-9.0*
pickle1: intel-linux-9.0*
pickle2: intel-linux-9.0*
pickle3: intel-linux-9.0*
pickle4: intel-linux-9.0*
pointee: intel-linux-9.0*
pointer_type_id_test: intel-linux-9.0*
pointer_vector: intel-linux-9.0*
polymorphism: intel-linux-9.0*
polymorphism2: intel-linux-9.0*
polymorphism2_auto_ptr: intel-linux-9.0*
properties: intel-linux-9.0*
raw_ctor: intel-linux-9.0*
return_arg: intel-linux-9.0*
shared_ptr: intel-linux-9.0*
slice: intel-linux-9.0*
staticmethod: intel-linux-9.0*
stl_iterator: intel-linux-9.0*
str: intel-linux-9.0*
test_pointer_adoption: intel-linux-9.0*
try: intel-linux-9.0*
tuple: intel-linux-9.0*
upcast: intel-linux-9.0*
vector_indexing_suite: intel-linux-9.0*
virtual_functions: intel-linux-9.0*
voidptr: intel-linux-9.0*
wrapper_held_type: intel-linux-9.0*
|random|
random_demo: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
random_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|rational|
rational_test: msvc-6.5*
|regex|
bad_expression_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
collate_info: intel-linux-9.0* intel-linux-9.0*
credit_card_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
grep: intel-linux-9.0* intel-linux-9.0*
icu_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
mfc_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
object_cache_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_grep: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_match: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
recursion_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_config_info: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
regex_dll_config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_3: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_4: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_iterator_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_match_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_merge_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_regress: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-6.5*
regex_regress_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0* msvc-6.5*
regex_regress_threaded: intel-linux-9.0* msvc-6.5*
regex_replace_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_search_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_timer: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
static_mutex_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
test_collate_info: intel-linux-9.0*
test_grep: intel-linux-9.0* sun-5.8
unicode_iterator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
wide_posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
|serialization|
test_array_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo: borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_dll: borland-5.8.2* intel-linux-9.0*
test_demo_exception: borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* intel-linux-9.0*
test_demo_fast_archive: borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* intel-linux-9.0*
test_demo_pimpl: borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* intel-linux-9.0*
test_demo_polymorphic: borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_portable_archive: borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* intel-linux-9.0*
test_demo_shared_ptr: borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* intel-linux-9.0*
test_demo_xml: borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_xml_save: borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* intel-linux-9.0*
test_deque_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_text_archive: borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_text_warchive: borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_xml_archive: borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_xml_warchive: borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_exported_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_binary_archive: borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_map_text_archive: borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_map_text_warchive: borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_map_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_mi_binary_archive: borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_text_archive: borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_text_warchive: borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_xml_archive: borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_xml_warchive: borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_mult_archive_types: borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* intel-linux-9.0*
test_multiple_ptrs_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_private_ctor: borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_reset_object_address: borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* intel-linux-9.0*
test_set_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_binary_archive: msvc-6.5* msvc-6.5*
test_variant_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_archive: msvc-6.5* msvc-6.5*
test_variant_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_warchive: msvc-6.5* msvc-6.5*
test_variant_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_archive: msvc-6.5* msvc-6.5*
test_variant_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_warchive: msvc-6.5* msvc-6.5*
test_variant_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_void_cast: borland-5.8.2*
test_void_cast_dll: borland-5.8.2* intel-linux-9.0*
|signals|
dead_slot_test: intel-linux-9.0*
deletion_test: intel-linux-9.0*
ordering_test: intel-linux-9.0*
signal_n_test: intel-linux-9.0*
signal_test: intel-linux-9.0*
trackable_test: intel-linux-9.0*
|smart_ptr|
atomic_count_test: msvc-6.5*
|spirit|
action_tests: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
action_tests_debug: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
bug_000008: intel-linux-9.0*
grammar_mt_tests: intel-linux-9.0*
owi_mt_tests: intel-linux-9.0*
scoped_lock_tests: intel-linux-9.0*
scoped_lock_tests_debug: intel-linux-9.0*
symbols_add_null: msvc-8.0
symbols_add_null_debug: msvc-8.0
|statechart|
DllTestNative: intel-linux-9.0*
DllTestNormal: intel-linux-9.0*
|test|
boost_check_equal_str: intel-linux-9.0* msvc-6.5* msvc-6.5*
errors_handling_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
fixed_mapping_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
output_test_stream_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
parameterized_test_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
prg_exec_fail2: darwin-4.0.1
prg_exec_fail3: cw-9.4 msvc-6.5* msvc-8.0
result_report_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_case_template_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_fp_comparisons: intel-linux-9.0*
test_tools_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
token_iterator_test: intel-linux-9.0*
|thread|
test_barrier: intel-linux-9.0*
test_condition: intel-linux-9.0*
test_mutex: intel-linux-9.0*
test_once: intel-linux-9.0*
test_thread: intel-linux-9.0*
test_tss: intel-linux-9.0*
test_tss_lib: msvc-8.0
test_xtime: intel-linux-9.0*
|utility|
operators_test: gcc-3.4.5_linux_x86_64
|wave|
test_re2c_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
test_slex_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
testwave: msvc-8.0
testwave_dll: hp_cxx-71_006_tru64 intel-linux-9.0* sun-5.8
1
0