Boost
Threads by month
- ----- 2025 -----
- 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
- 33145 discussions

31 Oct '07
Hi,
Does anyone know of a BGL or other generic and free C++ implementation
of a maximum weighted matching algorithm for general (non-bipartite) graphs?
LEDA has the algorithm but the license is restrictive.
A C implementation of maximum matching for undirected graphs in an
adjacency-list format is available from
ftp://dimacs.rutgers.edu/pub/netflow/matching/weighted/solver-1
Regards,
Mikko
1
0
Hi,
range/concepts.hpp is utterly broken.
You can't even include it.
Anyone plans to fix it? or may I make a patch?
--
Shunsuke Sogame
3
16

30 Oct '07
Just picked up the crypto lib from the vault (at least the sha1 and
md5 parts). There was one issue with the to_string() member function
of message_digest. It uses snprintf which isn't readily available in
MSVC (vs 2005 at least) so I rewrote it using some bit twiddling:
template<class Context>
std::string message_digest<Context>::to_string() const
{
static const char hex_digit[] =
{'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
char buf[context_type::digest_length * 2];
for (int i = 0; i < context_type::digest_length; ++i) {
buf[2*i] = hex_digit[((static_cast<const unsigned
char*>(digest())[i])&0xf0)>>4];
buf[2*i+1] = hex_digit[((static_cast<const unsigned
char*>(digest())[i])&0x0f)];
}
return std::string(buf, context_type::digest_length * 2);
}
This works at least for both vs 2005 and gcc 4.1.1, ymmv
Chris
2
1
> A stupid question: Why do you use __GLIBCXX__ instead of __GNUC__ and
> __GNUC_MINOR__ as described on
> http://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html?
I was just following the precedence in boost/config/stdlib/libstdcpp3.hpp:
#if defined(__GLIBCXX__) || (defined(__GLIBCPP__) && __GLIBCPP__>=20020514) // GCC >= 3.1.0
This is what's currently in the boost svn.
With trial-and-error I found out that __GLIBCPP__ is not defined by
the "experimental" g++ 4.3.0 from the gcc svn trunk.
I don't know what's the best set of #ifdefs in the long run. I'd leave
that to people more knowledgeable about the future g++ development path
(e.g. Doug).
Ralf
2
1
Hi.
I start learning boost.Here is very simple code I can't compile.
typedef std::vector<LPCWSTR> type;
type test;
test[0] = (_T("1"));
test[1] = (_T("2"));
test[2] = (_T("3"));
std::for_each(test.begin(),test.end(), OutputDebugString(_1));
Got compilation error :
-----------------------------------------------------------
error C2664: 'OutputDebugStringW' : cannot convert parameter 1 from
'boost::lambda:laceholder1_type' to 'LPCWSTR'
-----------------------------------------------------------
Can anybody point me at mistakes I made in the code?
2
2
Hello,
the multi platform failures observed for grammar_mt_tests and
owi_mt_tests seem to correlate to the recent thread lib update:
cxx: Error: ../boost/thread/pthread/thread.hpp, line 139: call of an object
of a class type without appropriate operator() or conversion
functions to pointer-to-function type (badcallclsobj)
detected during instantiation of "void
boost::thread::thread_data<F>::run() [with
F=boost::reference_wrapper<single_grammar_object_task>]"
f();
----------------^
Anyone knows what's going on?
Markus
5
4
Boost regression test failures
Report time: 2007-10-30T12:07:01Z
This report lists all regression test failures on release platforms.
Detailed report:
http://boost.org/regression/trunk/developer/issues.html
The following platforms have a large number of failures:
borland-5.6.4
borland-5.8.2
1993 failures in 31 libraries (338 are from non-broken platforms)
assign (0 of 2 failures are from non-broken platforms)
bimap (29 of 165 failures are from non-broken platforms)
bind (0 of 4 failures are from non-broken platforms)
concept_check (6 of 14 failures are from non-broken platforms)
conversion (6 of 14 failures are from non-broken platforms)
date_time (0 of 14 failures are from non-broken platforms)
dynamic_bitset (2)
filesystem (1 of 25 failures are from non-broken platforms)
fusion (55 of 507 failures are from non-broken platforms)
gil (4 of 8 failures are from non-broken platforms)
graph (9)
interprocess (2)
math (86 of 88 failures are from non-broken platforms)
mpl (1)
optional (3)
program_options (0 of 2 failures are from non-broken platforms)
ptr_container (1)
python (1)
range (5 of 11 failures are from non-broken platforms)
rational (0 of 4 failures are from non-broken platforms)
regex (0 of 1 failures are from non-broken platforms)
serialization (20 of 935 failures are from non-broken platforms)
spirit (13)
system (2 of 34 failures are from non-broken platforms)
test (7)
thread (0 of 29 failures are from non-broken platforms)
tr1 (2 of 6 failures are from non-broken platforms)
typeof (5 of 9 failures are from non-broken platforms)
utility (1 of 5 failures are from non-broken platforms)
wave (1)
xpressive (76)
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.
|assign|
static_list_of: borland-5.6.4* borland-5.8.2*
|bimap|
assign: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
foreach: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
lambda: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
property_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
serialization: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_assign: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_convenience_header: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_extra: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_info: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_lambda: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_list_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_modify: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_multiset_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_mutable: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_operator_bracket: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_ordered: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_project: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_property_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_sequenced: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_serialization: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_set_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_unconstrained: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_unordered: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_unordered_multiset_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_unordered_set_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_vector_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutant: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutant_relation: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_structured_pair: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_tagged: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
typeof: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
xpressive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5 msvc-8.0 sun-5.8
|bind|
bind_placeholder_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|concept_check|
class_concept_fail_expected: sun-5.8
old_concept_class_fail: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
old_concept_function_fail: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
stl_concept_check: hp_cxx-71_006_tru64
usage_fail: sun-5.8
where_fail: sun-5.8
|conversion|
lexical_cast_loopback_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 msvc-8.0 msvc-8.0 sun-5.8
lexical_cast_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
|date_time|
testgreg_serialize: borland-5.6.4* borland-5.8.2*
testgreg_serialize_dll: borland-5.6.4* borland-5.8.2*
testgreg_serialize_xml: borland-5.6.4* borland-5.8.2*
testtime_serialize: borland-5.6.4* borland-5.8.2*
testtime_serialize_std_config: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml_std_config: borland-5.6.4* borland-5.8.2*
|dynamic_bitset|
dyn_bitset_unit_tests3: hp_cxx-71_006_tru64
dyn_bitset_unit_tests4: sun-5.8
|filesystem|
convenience_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
fstream_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
large_file_support_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
operations_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5
path_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
simple_ls: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|fusion|
adapt_assoc_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
adapt_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
all: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
any: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
array: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_list: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
as_set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
back_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
boost_tuple: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
clear: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
cons: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
count: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
count_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deduce_sequence: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
erase: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
erase_key: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
filter: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
filter_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
filter_view: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
find: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
find_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fold: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
for_each: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
front_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fused: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
insert: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
insert_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
invoke: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
invoke_function_object: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
invoke_procedure: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
io: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
join: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
joint_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_list: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
map_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
none: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
pop_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
pop_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
push_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
push_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
remove: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
remove_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
repetitive_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
replace: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
replace_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
reverse: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
reverse_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
single_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
std_pair: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
swap: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
transform: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
transform_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_element: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_typed: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
variant: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
vector_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_n: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
vector_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
zip_view2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
zip_view_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
|gil|
main: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 sun-5.8
|graph|
cycle_ratio_tests: msvc-8.0
graphml_test: msvc-8.0
graphviz_test: msvc-8.0
kolmogorov_max_flow_test: acc hp_cxx-71_006_tru64
max_flow_test: acc hp_cxx-71_006_tru64
transitive_closure_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
|interprocess|
deque_test: hp_cxx-71_006_tru64
node_pool_test: hp_cxx-71_006_tru64
|math|
common_factor_test: sun-5.8
dist_binomial_incl_test: sun-5.8
dist_neg_binom_incl_test: sun-5.8
dist_poisson_incl_test: sun-5.8
sf_sign_incl_test: sun-5.8
std_real_concept_check: hp_cxx-71_006_tru64 sun-5.8
test_bessel_i: sun-5.8
test_bessel_j: sun-5.8
test_bessel_k: sun-5.8
test_bessel_y: sun-5.8
test_beta_dist: sun-5.8
test_binomial_coeff: sun-5.8
test_binomial_double: sun-5.8
test_binomial_float: sun-5.8
test_binomial_long_double: sun-5.8
test_binomial_real_concept: sun-5.8
test_carlson: sun-5.8
test_cauchy: sun-5.8
test_chi_squared: sun-5.8
test_classify: sun-5.8
test_constants: sun-5.8
test_digamma: sun-5.8
test_dist_overloads: sun-5.8
test_ellint_1: sun-5.8
test_ellint_2: sun-5.8
test_ellint_3: sun-5.8
test_erf: sun-5.8
test_exponential_dist: sun-5.8
test_extreme_value: sun-5.8
test_factorials: sun-5.8
test_find_location: sun-5.8
test_find_scale: sun-5.8
test_fisher_f: sun-5.8
test_gamma: sun-5.8
test_gamma_dist: sun-5.8
test_ibeta_double: sun-5.8
test_ibeta_float: sun-5.8
test_ibeta_inv_ab_double: hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_ab_float: sun-5.8
test_ibeta_inv_ab_long_double: sun-5.8
test_ibeta_inv_ab_real_concept: sun-5.8
test_ibeta_inv_double: hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_float: sun-5.8
test_ibeta_inv_long_double: hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_real_concept: sun-5.8
test_ibeta_long_double: hp_cxx-71_006_tru64 sun-5.8
test_ibeta_real_concept: sun-5.8
test_igamma: sun-5.8
test_igamma_inv_double: hp_cxx-71_006_tru64 sun-5.8
test_igamma_inv_float: sun-5.8
test_igamma_inv_long_double: sun-5.8
test_igamma_inv_real_concept: sun-5.8
test_igamma_inva_double: hp_cxx-71_006_tru64 sun-5.8
test_igamma_inva_float: sun-5.8
test_igamma_inva_long_double: sun-5.8
test_igamma_inva_real_concept: sun-5.8
test_instantiate1: sun-5.8
test_legendre: sun-5.8
test_lognormal: sun-5.8
test_negative_binomial_double: sun-5.8
test_negative_binomial_float: sun-5.8
test_negative_binomial_long_double: sun-5.8
test_negative_binomial_real_concept: sun-5.8
test_normal: sun-5.8
test_poisson_double: sun-5.8
test_poisson_long_double: sun-5.8
test_poisson_real_concept: sun-5.8
test_policy_2: borland-5.6.4* borland-5.8.2*
test_policy_sf: sun-5.8
test_rayleigh: sun-5.8
test_roots: hp_cxx-71_006_tru64 sun-5.8
test_spherical_harmonic: sun-5.8
test_students_t: sun-5.8
test_tgamma_ratio: sun-5.8
test_traits: sun-5.8
test_triangular: sun-5.8
test_weibull: sun-5.8
tools_roots_inc_test: sun-5.8
tools_test_data_inc_test: sun-5.8
|mpl|
apply: gcc-4.1.2_sunos_i86pc
|optional|
optional_test: gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 hp_cxx-71_006_tru64
|program_options|
parsers_test: borland-5.8.2*
parsers_test_dll: borland-5.8.2*
|ptr_container|
serialization: sun-5.8
|python|
exec: gcc-4.1.2_sunos_i86pc
|range|
iterator_pair: gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 hp_cxx-71_006_tru64
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
sub_range: borland-5.6.4* borland-5.8.2* sun-5.8
|rational|
rational_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|regex|
static_mutex_test: borland-5.6.4*
|serialization|
test_array_binary_archive: borland-5.6.4* borland-5.8.2*
test_array_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_text_archive: borland-5.6.4* borland-5.8.2*
test_array_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_text_warchive: borland-5.6.4* borland-5.8.2*
test_array_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_array_xml_archive: borland-5.6.4* borland-5.8.2*
test_array_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_xml_warchive: borland-5.6.4* borland-5.8.2*
test_array_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_binary_binary_archive: borland-5.6.4* borland-5.8.2*
test_binary_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_text_archive: borland-5.6.4* borland-5.8.2*
test_binary_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_text_warchive: borland-5.6.4* borland-5.8.2*
test_binary_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_binary_xml_archive: borland-5.6.4* borland-5.8.2*
test_binary_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_xml_warchive: borland-5.6.4* borland-5.8.2*
test_binary_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_binary_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_warchive: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_warchive: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_text_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_contained_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_binary_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_warchive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_warchive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_demo: borland-5.6.4* borland-5.8.2*
test_demo_auto_ptr: borland-5.6.4* borland-5.8.2*
test_demo_auto_ptr_dll: borland-5.6.4* borland-5.8.2*
test_demo_dll: borland-5.6.4* borland-5.8.2*
test_demo_exception: borland-5.6.4* borland-5.8.2*
test_demo_exception_dll: borland-5.6.4* borland-5.8.2*
test_demo_fast_archive: borland-5.6.4* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.6.4* borland-5.8.2*
test_demo_pimpl: borland-5.6.4* borland-5.8.2*
test_demo_pimpl_dll: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic_dll: borland-5.6.4* borland-5.8.2*
test_demo_portable_archive: borland-5.6.4* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2*
test_demo_shared_ptr: borland-5.6.4* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.6.4* borland-5.8.2*
test_demo_xml: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_demo_xml_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_demo_xml_load: borland-5.6.4* borland-5.8.2*
test_demo_xml_load_dll: borland-5.6.4* borland-5.8.2*
test_demo_xml_save: borland-5.6.4* borland-5.8.2*
test_demo_xml_save_dll: borland-5.6.4* borland-5.8.2*
test_deque_binary_archive: borland-5.6.4* borland-5.8.2*
test_deque_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_text_archive: borland-5.6.4* borland-5.8.2*
test_deque_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_text_warchive: borland-5.6.4* borland-5.8.2*
test_deque_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_deque_xml_archive: borland-5.6.4* borland-5.8.2*
test_deque_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_xml_warchive: borland-5.6.4* borland-5.8.2*
test_deque_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_binary_archive: borland-5.6.4* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_text_archive: borland-5.6.4* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_text_warchive: borland-5.6.4* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_xml_archive: borland-5.6.4* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_xml_warchive: borland-5.6.4* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_exported_binary_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_binary_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_warchive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_warchive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_warchive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_warchive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_list_binary_archive: borland-5.6.4* borland-5.8.2*
test_list_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_list_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_list_ptrs_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_binary_archive: borland-5.6.4* borland-5.8.2*
test_map_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_map_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mi_binary_archive: borland-5.6.4* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_text_archive: borland-5.6.4* borland-5.8.2*
test_mi_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_text_warchive: borland-5.6.4* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_mi_xml_archive: borland-5.6.4* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_xml_warchive: borland-5.6.4* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_mult_archive_types: borland-5.6.4* borland-5.8.2*
test_mult_archive_types_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_binary_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_binary_archive: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_default_ctor_binary_archive_dll: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_default_ctor_text_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_binary_archive: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_intrusive_binary_archive_dll: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_intrusive_text_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_binary_archive: borland-5.6.4* borland-5.8.2*
test_nvp_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_text_archive: borland-5.6.4* borland-5.8.2*
test_nvp_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_text_warchive: borland-5.6.4* borland-5.8.2*
test_nvp_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_xml_archive: borland-5.6.4* borland-5.8.2*
test_nvp_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_xml_warchive: borland-5.6.4* borland-5.8.2*
test_nvp_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_object_binary_archive: borland-5.6.4* borland-5.8.2*
test_object_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_text_archive: borland-5.6.4* borland-5.8.2*
test_object_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_text_warchive: borland-5.6.4* borland-5.8.2*
test_object_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_object_xml_archive: borland-5.6.4* borland-5.8.2*
test_object_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_xml_warchive: borland-5.6.4* borland-5.8.2*
test_object_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_optional_binary_archive: borland-5.6.4* borland-5.8.2*
test_optional_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_text_archive: borland-5.6.4* borland-5.8.2*
test_optional_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_text_warchive: borland-5.6.4* borland-5.8.2*
test_optional_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_optional_xml_archive: borland-5.6.4* borland-5.8.2*
test_optional_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_xml_warchive: borland-5.6.4* borland-5.8.2*
test_optional_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_binary_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_warchive: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_warchive: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_binary_archive: borland-5.6.4* borland-5.8.2*
test_primitive_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_text_archive: borland-5.6.4* borland-5.8.2*
test_primitive_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_text_warchive: borland-5.6.4* borland-5.8.2*
test_primitive_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_xml_archive: borland-5.6.4* borland-5.8.2*
test_primitive_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_xml_warchive: borland-5.6.4* borland-5.8.2*
test_primitive_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_private_ctor: borland-5.6.4* borland-5.8.2*
test_private_ctor_dll: borland-5.6.4* borland-5.8.2*
test_recursion_binary_archive: borland-5.6.4* borland-5.8.2*
test_recursion_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_text_archive: borland-5.6.4* borland-5.8.2*
test_recursion_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_text_warchive: borland-5.6.4* borland-5.8.2*
test_recursion_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_xml_archive: borland-5.6.4* borland-5.8.2*
test_recursion_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_xml_warchive: borland-5.6.4* borland-5.8.2*
test_recursion_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_registered_binary_archive: borland-5.6.4* borland-5.8.2*
test_registered_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_text_archive: borland-5.6.4* borland-5.8.2*
test_registered_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_text_warchive: borland-5.6.4* borland-5.8.2*
test_registered_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_registered_xml_archive: borland-5.6.4* borland-5.8.2*
test_registered_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_xml_warchive: borland-5.6.4* borland-5.8.2*
test_registered_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_reset_object_address: borland-5.6.4* borland-5.8.2*
test_reset_object_address_dll: borland-5.6.4* borland-5.8.2*
test_set_binary_archive: borland-5.8.2*
test_set_binary_archive_dll: borland-5.8.2*
test_set_text_archive: borland-5.8.2* borland-5.8.2*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_set_text_warchive: borland-5.8.2* borland-5.8.2*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_set_xml_archive: borland-5.8.2* borland-5.8.2*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2*
test_shared_ptr_132_binary_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_text_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_split_binary_archive: borland-5.6.4* borland-5.8.2*
test_split_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_text_archive: borland-5.6.4* borland-5.8.2*
test_split_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_text_warchive: borland-5.6.4* borland-5.8.2*
test_split_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_split_xml_archive: borland-5.6.4* borland-5.8.2*
test_split_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_xml_warchive: borland-5.6.4* borland-5.8.2*
test_split_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_binary_archive: borland-5.6.4* borland-5.8.2*
test_tracking_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_text_archive: borland-5.6.4* borland-5.8.2*
test_tracking_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_text_warchive: borland-5.6.4* borland-5.8.2*
test_tracking_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_xml_archive: borland-5.6.4* borland-5.8.2*
test_tracking_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_xml_warchive: borland-5.6.4* borland-5.8.2*
test_tracking_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_binary_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_text_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_text_warchive: borland-5.6.4* borland-5.8.2*
test_unregistered_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_warchive: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_valarray_binary_archive: borland-5.6.4* borland-5.8.2*
test_valarray_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_valarray_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_variant_binary_archive: borland-5.6.4*
test_variant_binary_archive_dll: borland-5.6.4*
test_variant_text_archive: borland-5.6.4*
test_variant_text_archive_dll: borland-5.6.4*
test_variant_text_warchive: borland-5.6.4*
test_variant_text_warchive_dll: borland-5.6.4*
test_variant_xml_archive: borland-5.6.4*
test_variant_xml_archive_dll: borland-5.6.4*
test_variant_xml_warchive: borland-5.6.4*
test_variant_xml_warchive_dll: borland-5.6.4*
test_vector_binary_archive: borland-5.6.4* borland-5.8.2*
test_vector_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_vector_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_void_cast: borland-5.6.4* borland-5.8.2*
test_void_cast_dll: borland-5.6.4* borland-5.8.2*
|spirit|
custom_real_parser: acc gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 hp_cxx-71_006_tru64 msvc-8.0 msvc-8.0
custom_real_parser_debug: acc gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 hp_cxx-71_006_tru64 msvc-8.0 msvc-8.0
mix_and_match_trees: sun-5.8
|system|
error_code_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_user_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_user_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
header_only_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
initialization_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
system_error_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5
system_error_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5
|test|
boost_check_equal_str: sun-5.8
errors_handling_test: sun-5.8
fixed_mapping_test: sun-5.8
online_test: sun-5.8
parameterized_test_test: sun-5.8
result_report_test: sun-5.8
test_tools_test: sun-5.8
|thread|
test_barrier: borland-5.6.4*
test_barrier_lib: borland-5.6.4*
test_condition: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_condition_lib: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutex: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutex_lib: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_once: borland-5.6.4*
test_once_lib: borland-5.6.4*
test_shared_mutex: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_shared_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_thread: borland-5.6.4* borland-5.8.2*
test_thread_lib: borland-5.6.4* borland-5.8.2*
test_tss: borland-5.6.4* borland-5.8.2* borland-5.8.2*
|tr1|
std_test_tuple_tricky: sun-5.8
test_tuple_tricky: sun-5.8
tr1_is_signed_test: borland-5.8.2* borland-5.8.2*
tr1_is_unsigned_test: borland-5.8.2* borland-5.8.2*
|typeof|
experimental_1_emulation: borland-5.8.2* sun-5.8
experimental_2_emulation: borland-5.8.2* sun-5.8
experimental_3_emulation: borland-5.8.2* sun-5.8
experimental_4_emulation: borland-5.8.2* sun-5.8
function_ptr_from_tpl_emulation: sun-5.8
|utility|
result_of_test: sun-5.8
value_init_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|wave|
testwave: gcc-mingw-3.4.5
|xpressive|
c_traits: gcc-mingw-3.4.5 msvc-8.0
misc1: gcc-mingw-3.4.5 msvc-8.0
misc2: gcc-mingw-3.4.5 msvc-8.0
multiple_defs: gcc-mingw-3.4.5 msvc-8.0
regress: gcc-mingw-3.4.5 msvc-8.0
test1: gcc-mingw-3.4.5 msvc-8.0
test10: gcc-mingw-3.4.5 msvc-8.0
test10u: gcc-mingw-3.4.5 msvc-8.0
test11: gcc-mingw-3.4.5 msvc-8.0
test11u: gcc-mingw-3.4.5 msvc-8.0
test1u: gcc-mingw-3.4.5 msvc-8.0
test2: gcc-mingw-3.4.5 msvc-8.0
test2u: gcc-mingw-3.4.5 msvc-8.0
test3: gcc-mingw-3.4.5 msvc-8.0
test3u: gcc-mingw-3.4.5 msvc-8.0
test4: gcc-mingw-3.4.5 msvc-8.0
test4u: gcc-mingw-3.4.5 msvc-8.0
test5: gcc-mingw-3.4.5 msvc-8.0
test5u: gcc-mingw-3.4.5 msvc-8.0
test6: gcc-mingw-3.4.5 msvc-8.0
test6u: gcc-mingw-3.4.5 msvc-8.0
test7: gcc-mingw-3.4.5 msvc-8.0
test7u: gcc-mingw-3.4.5 msvc-8.0
test8: gcc-mingw-3.4.5 msvc-8.0
test8u: gcc-mingw-3.4.5 msvc-8.0
test9: gcc-mingw-3.4.5 msvc-8.0
test9u: gcc-mingw-3.4.5 msvc-8.0
test_actions: gcc-mingw-3.4.5 msvc-8.0
test_assert: gcc-mingw-3.4.5 msvc-8.0
test_basic_regex: gcc-mingw-3.4.5 msvc-8.0
test_cycles: gcc-mingw-3.4.5 msvc-8.0
test_dynamic: gcc-mingw-3.4.5 msvc-8.0
test_dynamic_grammar: gcc-mingw-3.4.5 msvc-8.0
test_non_char: gcc-mingw-3.4.5 msvc-8.0
test_regex_compiler: gcc-mingw-3.4.5 msvc-8.0
test_regex_primitives: gcc-mingw-3.4.5 msvc-8.0
test_static: gcc-mingw-3.4.5 msvc-8.0
test_symbols: gcc-mingw-3.4.5 msvc-8.0
1
0
What is the recommended way to build bjam on cygwin? The documentation
didn't seem to specify anything unusual about a cygwin build, but
trying
sh ./build.sh
produces the following output:
$ sh ./build.sh
./build.sh: line 2: $'\r': command not found
./build.sh: line 6: $'\r': command not found
./build.sh: line 9: $'\r': command not found
./build.sh: line 12: syntax error near unexpected token `$'\r''
'/build.sh: line 12: `echo_run ()
I am not that familiar with Cygwin, am I doing something wrong?
--
Emil Dotchevski
Reverge Studios, Inc.
http://www.revergestudios.com/reblog/index.php?n=ReCode
4
3
[ 231 open bugs today, 231 yesterday ]
If you are maintaining a library, and have not logged into the trac system
at <http://svn.boost.org/trac/boost/>, please do so ASAP. Until you do that,
no tickets can be assigned to you, and will remain under "None".
Instructions on working with tickets can be found at:
<http://svn.boost.org/trac/boost/wiki/TicketWorkflow>
and a mapping of user names to "real names" can be found at:
<http://svn.boost.org/trac/boost/report/16>
19 ramey
16 djowel
16 dgregor
16 az_sw_dude
14 grafik
14 None
12 doug_gregor
11 turkanis
11 rogeeff
7 jsiek
7 dave
7 anthonyw
7 agurtovoy
6 vladimir_prus
6 johnmaddock
6 bemandawes
5 witt
5 samuel_krempp
4 shammah
4 fcacciola
3 pdimov
3 nesotto
3 jbandela
3 igaztanaga
3 danielw
2 urzuga
2 t_schwinger
2 pavol_droba
2 nasonov
2 jmaurer
2 hubert_holin
2 hkaiser
2 ebf
1 speedsnail
1 samuel_k
1 kaalus
1 guwi17
1 dlwalker
1 aaron_windsor
1 <Blank>
<Blank> 1307 [lambda] invalid boostbook
None 1048 Spirit returns full = false in 1.34 if there is trailing
spaces in input
None 1068 Mersenne twister disables streaming for Visual C++
None 1094 Finding the correct library to link (feature request for
pkg-config support)h
None 1187 bcp copy not needed files
None 1222 lambda::ret<T> should declare result_type.
None 1247 Typos in "boost/random/additive_combine.hpp"_ lines 68-69
None 1252 [pool] severe overhead with unaligned sizes.
None 1270 uniform_smallint doesn't compile with lagged_fibonacci
random number generators
None 1291 config.hpp fails to compile with gcc -Wundef
None 1311 Can't call base members on derived object in unit_test
None 1342 dylib library names broken in Mac OS X
None 1384 Linking problem with date_time library on Visual C++ 2008 Express
None 960 [random] lognormal_distribution problem
None 991 [pool]
aaron_windsor 778 top-level configure is broken
agurtovoy 1001 gcc 4.1.2 segfaults on mpl/test/apply.cpp
agurtovoy 1051 MPL header ordering triggers bug
agurtovoy 1099 unable to iterate through a "non-explicitly-declared" mpl::set
agurtovoy 1215 Boost 1.34.1_ mpl: Wrong workaround detection using
MinGW32 (or.hpp_ line #33)
agurtovoy 1317 has_xxx randomly broken in msvc
agurtovoy 588 mpl::remove compile error with gcc 4.1.0
agurtovoy 640 documentation mistake
anthonyw 1154 tss destruction segfaults in conjunction with dlopen/dlclose
anthonyw 1168 [thread] tss crashes randomly
anthonyw 1226 macro TEXT() in GetProcAddress()
anthonyw 1268 xtime_cmp changes to deal with overflow were reverted
anthonyw 1323 Assertion Error during cleanup after running out of
thread resources
anthonyw 876 xtime documentation incomplete
anthonyw 881 errors when build with Apache stdcxx
az_sw_dude 1028 typo in boost header: date_time/time_defs.hpp
az_sw_dude 1078 from_iso_string cannot read the output from to_iso_string
az_sw_dude 1098 Urgent libboost-date-time1.33.1 : bugs on ia64 ?
az_sw_dude 1147 date_time library contains global #define ERROR
az_sw_dude 1160 warning: month_format shadows a member of this
az_sw_dude 1162 warning: ticks shadows a member of this
az_sw_dude 1289 posix_time::time_facet forgets to pass a_ref argument
to base class
az_sw_dude 1299 change in typedef stringstream_type in
format_date_parser.hpp causing compilation error
az_sw_dude 1306 invalid docbook in date_period.xml
az_sw_dude 1386 date_time documentation Jamfile breaks building of boost docs
az_sw_dude 287 wrong usage of ios_base::narrow
az_sw_dude 316 date_time type conversion warning
az_sw_dude 604 from_ftime incorrectly processes FILETIME filled with zeros
az_sw_dude 642 operator<< for gregorian::date_duration not found
az_sw_dude 889 Insane Dependencies
az_sw_dude 890 date_time library supports only the current dst rule
bemandawes 1230 mbstate uninitialized
bemandawes 1312 boost::filesystem link error on mac os x
bemandawes 1378 filesystem path invalid name for hidden files (LINUX)
bemandawes 559 linker error mingw 3.4.5
bemandawes 752 directory_iterator doesn't work with catch
bemandawes 897 exists() throws exeption on existing but locked file on wind
danielw 1044 Argument pack inaccessable in a functions return type
danielw 1054 Parameter takes an "infinite" amount of time to compile
with the Intel compiler.
danielw 1097 keyword.hpp generates many warnings C4180: qualifier
applied to function type has no meaning; ignored
dave 1010 linking boost.python on freebsd
dave 1019 iterator_facade::pointer should be the return type of
operator-> (DR 445)
dave 1085 Python rules for compiling in Mac OS X
dave 1179 [boost.python] can not export a union in VC2005sp1
dave 1181 [boost.python] can modify enum value
dave 865 Use of C++0x keyword as identifier
dave 910 gcc strict-aliasing problems with python
dgregor 1002 [iostreams] close_impl<closable_tag> does not comply with spec
dgregor 1003 [iostreams] copy-paste error in typedefs for wchar
multichar_filters
dgregor 1011 amd64: #error Boost.Numeric.Interval: Please specify
rounding control mechanism.
dgregor 1139 [iostreams] Regex filter segfaults when zero matches found
dgregor 1140 boost::iostreams linked_streambuf bug
dgregor 1149 Minor doc error in basic_null_device
dgregor 1164 Floyd Warshall broken with unsigned edge weights
dgregor 1185 iostreams::direct_streambuf<T_Tr>::is_open always
returns false if output iterator is not null
dgregor 1192 [boostbook] problem when two files have the same name
dgregor 1199 configure doesn't work with path containing whitespaces (MacOS X)
dgregor 1232 mapped_file_source::is_open() is broken under windows
dgregor 1310 [result_of] const-qualified function pointer doesn't work
dgregor 1326 Unable to check graph isomorphism using LEDA adapter
dgregor 556 Bundled graph properties
dgregor 732 Johnson All-Pairs needs better "no path" information
dgregor 736 Const correctness violation
djowel 1096 Tutorial needs updating for BBv2
djowel 1170 Emit Warnings instead of # symbols in the syntax highlighter
djowel 1171 Quickbook title output
djowel 1172 non-utf
djowel 1176 Space after inline code
djowel 1206 Escaping from within code?
djowel 1273 CR+LF newlines in position_iterator
djowel 1276 spirit problem with _GLIBCXX_DEBUG
djowel 1277 Closing section like [pre with } causes Quickbok to crash
djowel 1280 sections in imported source files get put inside <para>
elements in docbook output
djowel 1281 Quickbook produces invalid BoostBook/DocBook XML
djowel 1324 tuple should have a swap() that operates element-by-element
djowel 1328 boost::spirit concurrency gap
djowel 241 Miss " = ParserT()"
djowel 314 spirit insert_key_actor.hpp
djowel 664 crash in boost::spirit::parse
dlwalker 613 boost/crc.hpp uses non-standard conforming syntax
doug_gregor 1021 [Graph][reverse_graph] Problem using reverse_graph
adapter with an adapted user defined graph
doug_gregor 1076 compile error: disconnecting struct with
operator()() doesn't work in VS2005 SP1
doug_gregor 375 LEDA graph adaptors do not handle hidden nodes properly
doug_gregor 402 random_vertex/random_edge are unnecessarily inefficient
doug_gregor 403 Document copy_component
doug_gregor 447 reverse_graph and constness of property maps
doug_gregor 708 Dijkstra no_init version should not require VertexListGraph
doug_gregor 733 Numbered headers don't work with "preferred" syntax
doug_gregor 735 Fruchterman-Reingold grid performance can be improved
doug_gregor 738 Memory leaks with signal::connect?
doug_gregor 829 Implicit graph not implement
doug_gregor 852 Problem with Boost and GCC 4.1
ebf 965 [doc] boost::variant tutorial - final example uses v1_v2
should be seq1_seq2
ebf 993 Variant should use least common multiple of alignments_
rather than maximum
fcacciola 1217 value_initialized leaves data uninitialized_ when using MSVC
fcacciola 1301 copy-initialization from const-qualified object doesn't work
fcacciola 617 Numeric Conversion Documentation minor bug
fcacciola 818 No zero-argument in_place()
grafik 1023 inspect
grafik 1041 Cygwin requires PATH setting.
grafik 1062 Cygwin install stage fails with combination of patches
grafik 1146 KAI Referenced in compiler status acknowledgements
grafik 1233 Boost website still refers to CVS
grafik 1244 Broken links to unit test examples
grafik 1318 http links have gone bad in boost.test documentation
grafik 1322 trac rejects patch attachment as spam
grafik 546 boost.build needs fixes for HP/UX
grafik 616 Boost Jam_ and non english directorys
grafik 896 <native-wchar_t>off does not work when build with vc-8.0
grafik 959 linking fails when Boost is compiled with STLport 5.1.* on
Linux (names mismatch)
grafik 977 bjam crashes when compiled with gcc 4.2
grafik 986 Problem building Python modules on boost 1.34.0
guwi17 1237 Resizing symmetric matrices
hkaiser 1077 Spirit integer parser does not always detect integer overflow
hkaiser 1079 boost-1.34.0 fails to compile. concept checks not satisfied.
hubert_holin 162 Cannot compile octonion_test.cpp because of bug in sinc.hpp
hubert_holin 647 octonion documentation bug
igaztanaga 1080 boost::interprocess win32 global file mapping issue
igaztanaga 1210 interprocess::barrier hangs during second use under
linux (boost 1.33.1)
igaztanaga 1231 interprocess_condition (emulated) hangs after notify_all().
jbandela 283 Compiler error for tokenizer on Solaris
jbandela 501 token_iterator::at_end() result is inversed
jbandela 665 bug in char_separator
jmaurer 351 Diff in state of mersenne_twister gen between GCC3.41 & CW9
jmaurer 819 uniform_int<> with type's maximum availaible range error
johnmaddock 1081 Empty string rejected as perl-style regex
johnmaddock 1083 boost_regex 1.34.0 uses ICU library without linking to it
johnmaddock 1148 boost_1_34_1 regex library compile failure on aix with xlv
johnmaddock 1314 Using SSE-intrinsics in VC8 causes static assert in
type_with_alignment.hpp
johnmaddock 1380 Missing #pragma warning(pop) in regex/pattern_except.hpp
johnmaddock 1381 Mismatch BOOST_MSVC version check for #pragma
warning(pop) in regex/v4/regex_token_iterator.hpp
jsiek 416 Spelling of Edmonds-Karp-Algorithm
jsiek 575 Calling subgraph::global_to_local on a root graph
jsiek 636 strange compiling problem for transitive_closure
jsiek 813 concept_check.hpp unused variable warning
jsiek 815 remove_edge core dumps on self-circle
jsiek 875 No iterator based constructor for adjacency_matrix
jsiek 900 graphml reader namespace handling is broken
kaalus 1184 property_tree assignment (operator) bug
nasonov 1220 lexical_cast requires RTTI
nasonov 754 boost::any - typeid comparison across shared boundaries
nesotto 1284 [range] sub_range assignment issue
nesotto 1327 iterator value_type possibly cv-qualified
nesotto 723 local_time_facet error in VS2005 Win2003
pavol_droba 1152 rle_example fails
pavol_droba 1385 begin must be boost-qualified
pdimov 1106 shared_ptr<T> should not convert to shared_ptr<U> when T*
doesn't convert to U*
pdimov 1108 shared_ptr does not compile under g++ with -fno-rtti
pdimov 997 error in boost::bind doc
ramey 1036 assert failure in oserializer.hpp:418
ramey 1038 "<" and ">" should be excaped in xml_oarchive
ramey 1086 Serialization of weak_ptr produces invalid XML
ramey 1089 missing boost::serialization::make_nvp in pointer container library
ramey 1121 xml_archive_exception is missing seperate header file_ and
documentation mismatch
ramey 1137 Virtual destructor is missing
ramey 1141 Dangerious operator<< for wostream
ramey 1142 boost/serialization/optional doesn't include necessary header
ramey 1223 boost::serialization chokes on correcly formatted empty XML element
ramey 1267 Assertion `new_cid == cid' failed in basic_iarchive
ramey 1285 [serialization] problem when including shared_ptr_132.hpp
ramey 1286 Missing/Incorrect dllimport/dllexport directives prevent
Windows DLLs from building
ramey 1290 Serialization export.hpp (or type_info_implementation.hpp)
is NOT self-contained and causes compile error
ramey 1382 Missing #pragma warning(pop) in void_cast.hpp
ramey 757 xml serialization fails when using namespace
ramey 878 error C2039: 'mbstate_t' : is not a member of 'std'
ramey 961 boost::basic_binary_oprimitive not instantiated correctly
ramey 968 xml_grammar - incorrect define char
ramey 969 basic_binary_iprimitive::load_binary bug
rogeeff 1030 execution_monitor.ipp #warning directive breaks
compilation on MSVC 8.0
rogeeff 1032 typo in Boost.Test documentation
rogeeff 1050 BOOST_CHECK_CLOSE_FRACTION documentation missing
rogeeff 1060 no example sources in online docs for Boost::Test
rogeeff 1212 Template fixtures
rogeeff 1383 signal.h features not found on Mac OS
rogeeff 607 Log level names wrong in documentation
rogeeff 842 typo in auto_unit_test.hpp Revision 1.17
rogeeff 893 grammatical error in error message
rogeeff 956 Doc error in test examples.
rogeeff 962 Missing links in Test library documentation
samuel_k 585 64 bit compile warning/error for boost::format
samuel_krempp 1195 patch: boost/format/parsing.hpp does not compile
if BOOST_NO_LOCALE_ISDIGIT is defined
samuel_krempp 1196 Patch: when BOOST_NO_STD_LOCALE is not defined_
boost/format/internals.hpp fails to compile.
samuel_krempp 1278 declaration of 'str' shadows a member of 'this'
samuel_krempp 704 format zero length string msvc-8
samuel_krempp 859 boost::format ignores a user defined locale
shammah 284 pool::purge_memory() does not reset next_size
shammah 290 perfomance: memory cleanup for pool takes too long
shammah 386 boost::pool_allocator breaks with vector of vectors
shammah 88 ct_gcd_lcm.hpp compilation error
speedsnail 1138 Problems with TSS and static thread library
t_schwinger 1100 Building boost.function_types fails cvs rev-1.1_ no
chdir command in bash
t_schwinger 1332 Inclusion of non existing file
boost/fusion/sequence/utility/unpack_args.hpp in
boost/fusion/sequence/utility.hpp
turkanis 1033 iostreams::restrict doesn't work on an iostreams::file_source
turkanis 1070 [iostreams]boost\iostreams\copy.hpp line80 copy_impl
turkanis 525 problem with boost::iostreams when compiled with Visual C++
turkanis 699 Changing size of memory-mapped file on Windows
turkanis 786 bug in iostreams/copy.hpp line 81
turkanis 791 iostreams::tee_filter is for output only
turkanis 817 Performance problem in iostreams
turkanis 822 Incorrect usage of bad_write()_ bad_seek() etc.
turkanis 823 Seekable file_descriptor_source /sink?
turkanis 824 BOOST_IOSTREAMS_HAS_LSEEK64 on Mac OS X
turkanis 856 iostreams file_descriptor::write fails under Win32
urzuga 574 [boost::lambda] Compile error with libstdc++ debug mode
urzuga 781 Lambda: (_1 + "y")(string("x")) Doesn't Compile
vladimir_prus 1165 more quoting problems
vladimir_prus 1274 Useless error message
vladimir_prus 1275 boost::program_options::validation_error::what() is private
vladimir_prus 1321 invalid docbook in tool documentation
vladimir_prus 469 multitoken broken
vladimir_prus 689 [program_options] Endless loop with long default arguments
witt 1046 Boost.Python quickstart instructions mention nonexistent target
witt 583 Fixes for build on IBM pSeries for AIX and Linux
witt 834 Homepage regression links
witt 957 The "Getting Started" page does not mention the stdlib option
witt 973 zip_iterator has value_type == reference
--
-- Marshall
Marshall Clow Qualcomm, Inc. <mailto:mclow@qualcomm.com>
The famous British scientist, Lord Kelvin, said: "When you measure
what you are speaking about and express it in numbers, you know
something about it, but when you cannot (or do not) measure it, when
you cannot (or do not) express it in numbers, then your knowledge is
of a meagre and unsatisfactory kind."
1
0
I'm testing Boost.Python compilation with the latest g++ 4.3.0
(svn rev 129691). It fails because ext/hash_set is not available.
On 2007-10-18 it was moved to backward/hash_set (gcc svn rev 129442).
The patch below restores the Boost.Python compilation.
Is this an OK adjustment?
Ralf
Index: boost/config/stdlib/libstdcpp3.hpp
===================================================================
--- boost/config/stdlib/libstdcpp3.hpp (revision 40556)
+++ boost/config/stdlib/libstdcpp3.hpp (working copy)
@@ -68,6 +68,11 @@
# define BOOST_HAS_SLIST
# define BOOST_HAS_HASH
# define BOOST_SLIST_HEADER <ext/slist>
+# if defined(__GLIBCXX__) && __GLIBCXX__ < 20071018 // GCC >= 4.3.0
# define BOOST_HASH_SET_HEADER <ext/hash_set>
# define BOOST_HASH_MAP_HEADER <ext/hash_map>
+# else
+# define BOOST_HASH_SET_HEADER <backward/hash_set>
+# define BOOST_HASH_MAP_HEADER <backward/hash_map>
+# endif
#endif
3
2
Library authors often use the pattern:
void foo(void)
{
unsigned res = SomeFuncWithSideEffects();
BOOST_ASSERT(res);
}
This causes a lot of noise on some compilers (e.g. gcc)
about unused variables when building in release mode.
I suggest a macro
void foo(void)
{
BOOST_ASSERT_DEF( unsigned res = ) SomeFuncWithSideEffects();
BOOST_ASSERT(res);
}
to get rid of these warnings, in cases where the variable is only used
for assertion.
In boostroot/boost/assert.hpp add
#if defined(BOOST_DISABLE_ASSERTS)
# define BOOST_ASSERT_DEF( tokens )
#elif defined(BOOST_ENABLE_ASSERT_HANDLER)
# define BOOST_ASSERT_DEF( tokens ) tokens
#else
# if defined(NDEBUG)
# define BOOST_ASSERT_DEF( tokens )
# else
# define BOOST_ASSERT_DEF( tokens ) tokens
# endif
#endif
Comments welcome!
In particular if anyone thinks that the above pattern can or should
better be avoided at all, I would be glad to learn how this can be done.
Roland aka speedsnail
4
8
In order for BOOST_TYPEOF to work with xpressive's static regexes
(something I'm actively trying to support), I need registrations for
reference_wrapper<> and mpl::int_<>. I'm happy to add them, but I'm not
sure where. Thoughts?
--
Eric Niebler
Boost Consulting
www.boost-consulting.com
9
13
Joel,
Fusion's tuple tests are passing with IBM xlc, but the TR1 tuple tests are
failing with problems with std::pair, which in turn causes all the
Boost.Math tests to fail: it appears that just including the header
../boost/fusion/adapted/std_pair.hpp is enough to trigger the issue :-(
See http://tinyurl.com/3cfz2n for a typical error message.
Is this fixable, or should I degrade TR1 to the old tuples implementation
for this compiler? BTW the old spirit-fusion code did work with xlc I
believe.
Chris: the code that's failing looks so innocuous it's hard to see how it
could fail: there's nothing odd in xlc's headers like an extra defaulted
template argument for std::pair is there?
Thanks, John Maddock.
3
7
There seem to be quite a few test runners that haven't run any tests this
week (or at least I'm not seeing any of the new Boost.Math tests showing
up), frankly it's hard to see how any of these can be official release
platforms if they're run rather infrequently: which is not to say they're
not useful non-the-less!
I'm just flagging this up, in case folks were thinking that any of these
*were* being run frequently, those with a "*", currently have no recent
tests for that compiler/platform:
*AIX, IBM xlc, last run Fri 5th Oct.
*Darwin, gcc 4.0.1, OSL, last run Fri 5th Oct.
*Darwin, gcc 4.0.1, Sandia, last run Thurs 4th Oct.
*Darwin, gcc 4.0.1, Sandia, last run Fri 5th Oct.
*Irix64, SGI mipspro, Sandia, last run Fri 5th Oct.
Linux, gcc-4.1.2, Faux, last run Sat 29th Sept.
Linux, gcc/pathscale/pgi, Sandia, last run 5th Oct or earlier.
Linux, intel c++, Sandia, last run 5th Oct.
Linux, gcc, OSL, 14th Sept.
Linux, gcc, BGD-Ubuntu, last run 30 Sept.
Sun OS, Sun-5.8, OSL, last run 5th Oct.
Win32, Borland C++, Siliconman: these have been run recently, but against an
old version of the trunk.
*Win32, gcc-cygwin/minw32, speedsnail, Last run 1st Oct.
Most of the other tester have run once or twice last week, with only the
following showing reasonably rapid (sub 48hrs) turnaround times (this is my
just my subjective impression based on monitoring the results this week):
HP-UX IA64 gcc.
RSI Droid Linux gcc-4.1.2
Caleb Epstein SunOS-5.10 gcc.
Huang-WinXP-x86_32 VC8, Intel-10
RudbekAssociates-V2 VC7.1, VC8.
Huang-Vista-x64 VC8 Intel-10
BCB Boost, Borland 5.6.4, 5.8.2, 5.9.2
Please note: I'm not trying to malign anyone here, we *REALLY* appreciate
all the time, effort and resources that all the tester put in: especially if
you've made it my "frequent" list :-)
I also note that quite a few of the tests were last run on the 5th Oct,
which may indicate a common cause (tarball problems?).
Anyway I thought I'd better flag this up, so we can get that 1.35 release
moving along :-)
Regards, John Maddock.
2
1
OK, I'll maintain the patch locally until there is a final decision.
Thanks for the info!
Ralf
----- Original Message ----
From: Doug Gregor <dgregor(a)osl.iu.edu>
To: boost(a)lists.boost.org
Sent: Monday, October 29, 2007 12:12:42 PM
Subject: Re: [boost] backward/hash_set (g++ 4.3.0)
On Oct 29, 2007, at 2:12 PM, Ralf W. Grosse-Kunstleve wrote:
> I'm testing Boost.Python compilation with the latest g++ 4.3.0
> (svn rev 129691). It fails because ext/hash_set is not available.
> On 2007-10-18 it was moved to backward/hash_set (gcc svn rev 129442).
> The patch below restores the Boost.Python compilation.
> Is this an OK adjustment?
You might want to hold off on this change... the GCC folks are
reconsidering whether ext/hash_set will exist in 4.3.0 or not.
- Doug
1
0
[ 231 open tickets today, 225 last Thursday ]
If you are maintaining a library, and have not logged into the trac system
at <http://svn.boost.org/trac/boost/>, please do so ASAP. Until you do that,
no tickets can be assigned to you, and will remain under "None".
Instructions on working with tickets can be found at:
<http://svn.boost.org/trac/boost/wiki/TicketWorkflow>
and a mapping of user names to "real names" can be found at:
<http://svn.boost.org/trac/boost/report/16>
Bug summary
19 ramey
16 djowel
16 dgregor
16 az_sw_dude
14 grafik
14 None
12 doug_gregor
11 turkanis
11 rogeeff
7 jsiek
7 dave
7 anthonyw
7 agurtovoy
6 vladimir_prus
6 johnmaddock
6 bemandawes
5 witt
5 samuel_krempp
4 shammah
4 fcacciola
3 pdimov
3 nesotto
3 jbandela
3 igaztanaga
3 danielw
2 urzuga
2 t_schwinger
2 pavol_droba
2 nasonov
2 jmaurer
2 hubert_holin
2 hkaiser
2 ebf
1 speedsnail
1 samuel_k
1 kaalus
1 guwi17
1 dlwalker
1 aaron_windsor
1 <Blank>
<Blank> 1307 [lambda] invalid boostbook
None 1048 Spirit returns full = false in 1.34 if there is trailing
spaces in input
None 1068 Mersenne twister disables streaming for Visual C++
None 1094 Finding the correct library to link (feature request for
pkg-config support)h
None 1187 bcp copy not needed files
None 1222 lambda::ret<T> should declare result_type.
None 1247 Typos in "boost/random/additive_combine.hpp"_ lines 68-69
None 1252 [pool] severe overhead with unaligned sizes.
None 1270 uniform_smallint doesn't compile with lagged_fibonacci
random number generators
None 1291 config.hpp fails to compile with gcc -Wundef
None 1311 Can't call base members on derived object in unit_test
None 1342 dylib library names broken in Mac OS X
None 1384 Linking problem with date_time library on Visual C++ 2008 Express
None 960 [random] lognormal_distribution problem
None 991 [pool]
aaron_windsor 778 top-level configure is broken
agurtovoy 1001 gcc 4.1.2 segfaults on mpl/test/apply.cpp
agurtovoy 1051 MPL header ordering triggers bug
agurtovoy 1099 unable to iterate through a "non-explicitly-declared" mpl::set
agurtovoy 1215 Boost 1.34.1_ mpl: Wrong workaround detection using
MinGW32 (or.hpp_ line #33)
agurtovoy 1317 has_xxx randomly broken in msvc
agurtovoy 588 mpl::remove compile error with gcc 4.1.0
agurtovoy 640 documentation mistake
anthonyw 1154 tss destruction segfaults in conjunction with dlopen/dlclose
anthonyw 1168 [thread] tss crashes randomly
anthonyw 1226 macro TEXT() in GetProcAddress()
anthonyw 1268 xtime_cmp changes to deal with overflow were reverted
anthonyw 1323 Assertion Error during cleanup after running out of
thread resources
anthonyw 876 xtime documentation incomplete
anthonyw 881 errors when build with Apache stdcxx
az_sw_dude 1028 typo in boost header: date_time/time_defs.hpp
az_sw_dude 1078 from_iso_string cannot read the output from to_iso_string
az_sw_dude 1098 Urgent libboost-date-time1.33.1 : bugs on ia64 ?
az_sw_dude 1147 date_time library contains global #define ERROR
az_sw_dude 1160 warning: month_format shadows a member of this
az_sw_dude 1162 warning: ticks shadows a member of this
az_sw_dude 1289 posix_time::time_facet forgets to pass a_ref argument
to base class
az_sw_dude 1299 change in typedef stringstream_type in
format_date_parser.hpp causing compilation error
az_sw_dude 1306 invalid docbook in date_period.xml
az_sw_dude 1386 date_time documentation Jamfile breaks building of boost docs
az_sw_dude 287 wrong usage of ios_base::narrow
az_sw_dude 316 date_time type conversion warning
az_sw_dude 604 from_ftime incorrectly processes FILETIME filled with zeros
az_sw_dude 642 operator<< for gregorian::date_duration not found
az_sw_dude 889 Insane Dependencies
az_sw_dude 890 date_time library supports only the current dst rule
bemandawes 1230 mbstate uninitialized
bemandawes 1312 boost::filesystem link error on mac os x
bemandawes 1378 filesystem path invalid name for hidden files (LINUX)
bemandawes 559 linker error mingw 3.4.5
bemandawes 752 directory_iterator doesn't work with catch
bemandawes 897 exists() throws exeption on existing but locked file on wind
danielw 1044 Argument pack inaccessable in a functions return type
danielw 1054 Parameter takes an "infinite" amount of time to compile
with the Intel compiler.
danielw 1097 keyword.hpp generates many warnings C4180: qualifier
applied to function type has no meaning; ignored
dave 1010 linking boost.python on freebsd
dave 1019 iterator_facade::pointer should be the return type of
operator-> (DR 445)
dave 1085 Python rules for compiling in Mac OS X
dave 1179 [boost.python] can not export a union in VC2005sp1
dave 1181 [boost.python] can modify enum value
dave 865 Use of C++0x keyword as identifier
dave 910 gcc strict-aliasing problems with python
dgregor 1002 [iostreams] close_impl<closable_tag> does not comply with spec
dgregor 1003 [iostreams] copy-paste error in typedefs for wchar
multichar_filters
dgregor 1011 amd64: #error Boost.Numeric.Interval: Please specify
rounding control mechanism.
dgregor 1139 [iostreams] Regex filter segfaults when zero matches found
dgregor 1140 boost::iostreams linked_streambuf bug
dgregor 1149 Minor doc error in basic_null_device
dgregor 1164 Floyd Warshall broken with unsigned edge weights
dgregor 1185 iostreams::direct_streambuf<T_Tr>::is_open always
returns false if output iterator is not null
dgregor 1192 [boostbook] problem when two files have the same name
dgregor 1199 configure doesn't work with path containing whitespaces (MacOS X)
dgregor 1232 mapped_file_source::is_open() is broken under windows
dgregor 1310 [result_of] const-qualified function pointer doesn't work
dgregor 1326 Unable to check graph isomorphism using LEDA adapter
dgregor 556 Bundled graph properties
dgregor 732 Johnson All-Pairs needs better "no path" information
dgregor 736 Const correctness violation
djowel 1096 Tutorial needs updating for BBv2
djowel 1170 Emit Warnings instead of # symbols in the syntax highlighter
djowel 1171 Quickbook title output
djowel 1172 non-utf
djowel 1176 Space after inline code
djowel 1206 Escaping from within code?
djowel 1273 CR+LF newlines in position_iterator
djowel 1276 spirit problem with _GLIBCXX_DEBUG
djowel 1277 Closing section like [pre with } causes Quickbok to crash
djowel 1280 sections in imported source files get put inside <para>
elements in docbook output
djowel 1281 Quickbook produces invalid BoostBook/DocBook XML
djowel 1324 tuple should have a swap() that operates element-by-element
djowel 1328 boost::spirit concurrency gap
djowel 241 Miss " = ParserT()"
djowel 314 spirit insert_key_actor.hpp
djowel 664 crash in boost::spirit::parse
dlwalker 613 boost/crc.hpp uses non-standard conforming syntax
doug_gregor 1021 [Graph][reverse_graph] Problem using reverse_graph
adapter with an adapted user defined graph
doug_gregor 1076 compile error: disconnecting struct with
operator()() doesn't work in VS2005 SP1
doug_gregor 375 LEDA graph adaptors do not handle hidden nodes properly
doug_gregor 402 random_vertex/random_edge are unnecessarily inefficient
doug_gregor 403 Document copy_component
doug_gregor 447 reverse_graph and constness of property maps
doug_gregor 708 Dijkstra no_init version should not require VertexListGraph
doug_gregor 733 Numbered headers don't work with "preferred" syntax
doug_gregor 735 Fruchterman-Reingold grid performance can be improved
doug_gregor 738 Memory leaks with signal::connect?
doug_gregor 829 Implicit graph not implement
doug_gregor 852 Problem with Boost and GCC 4.1
ebf 965 [doc] boost::variant tutorial - final example uses v1_v2
should be seq1_seq2
ebf 993 Variant should use least common multiple of alignments_
rather than maximum
fcacciola 1217 value_initialized leaves data uninitialized_ when using MSVC
fcacciola 1301 copy-initialization from const-qualified object doesn't work
fcacciola 617 Numeric Conversion Documentation minor bug
fcacciola 818 No zero-argument in_place()
grafik 1023 inspect
grafik 1041 Cygwin requires PATH setting.
grafik 1062 Cygwin install stage fails with combination of patches
grafik 1146 KAI Referenced in compiler status acknowledgements
grafik 1233 Boost website still refers to CVS
grafik 1244 Broken links to unit test examples
grafik 1318 http links have gone bad in boost.test documentation
grafik 1322 trac rejects patch attachment as spam
grafik 546 boost.build needs fixes for HP/UX
grafik 616 Boost Jam_ and non english directorys
grafik 896 <native-wchar_t>off does not work when build with vc-8.0
grafik 959 linking fails when Boost is compiled with STLport 5.1.* on
Linux (names mismatch)
grafik 977 bjam crashes when compiled with gcc 4.2
grafik 986 Problem building Python modules on boost 1.34.0
guwi17 1237 Resizing symmetric matrices
hkaiser 1077 Spirit integer parser does not always detect integer overflow
hkaiser 1079 boost-1.34.0 fails to compile. concept checks not satisfied.
hubert_holin 162 Cannot compile octonion_test.cpp because of bug in sinc.hpp
hubert_holin 647 octonion documentation bug
igaztanaga 1080 boost::interprocess win32 global file mapping issue
igaztanaga 1210 interprocess::barrier hangs during second use under
linux (boost 1.33.1)
igaztanaga 1231 interprocess_condition (emulated) hangs after notify_all().
jbandela 283 Compiler error for tokenizer on Solaris
jbandela 501 token_iterator::at_end() result is inversed
jbandela 665 bug in char_separator
jmaurer 351 Diff in state of mersenne_twister gen between GCC3.41 & CW9
jmaurer 819 uniform_int<> with type's maximum availaible range error
johnmaddock 1081 Empty string rejected as perl-style regex
johnmaddock 1083 boost_regex 1.34.0 uses ICU library without linking to it
johnmaddock 1148 boost_1_34_1 regex library compile failure on aix with xlv
johnmaddock 1314 Using SSE-intrinsics in VC8 causes static assert in
type_with_alignment.hpp
johnmaddock 1380 Missing #pragma warning(pop) in regex/pattern_except.hpp
johnmaddock 1381 Mismatch BOOST_MSVC version check for #pragma
warning(pop) in regex/v4/regex_token_iterator.hpp
jsiek 416 Spelling of Edmonds-Karp-Algorithm
jsiek 575 Calling subgraph::global_to_local on a root graph
jsiek 636 strange compiling problem for transitive_closure
jsiek 813 concept_check.hpp unused variable warning
jsiek 815 remove_edge core dumps on self-circle
jsiek 875 No iterator based constructor for adjacency_matrix
jsiek 900 graphml reader namespace handling is broken
kaalus 1184 property_tree assignment (operator) bug
nasonov 1220 lexical_cast requires RTTI
nasonov 754 boost::any - typeid comparison across shared boundaries
nesotto 1284 [range] sub_range assignment issue
nesotto 1327 iterator value_type possibly cv-qualified
nesotto 723 local_time_facet error in VS2005 Win2003
pavol_droba 1152 rle_example fails
pavol_droba 1385 begin must be boost-qualified
pdimov 1106 shared_ptr<T> should not convert to shared_ptr<U> when T*
doesn't convert to U*
pdimov 1108 shared_ptr does not compile under g++ with -fno-rtti
pdimov 997 error in boost::bind doc
ramey 1036 assert failure in oserializer.hpp:418
ramey 1038 "<" and ">" should be excaped in xml_oarchive
ramey 1086 Serialization of weak_ptr produces invalid XML
ramey 1089 missing boost::serialization::make_nvp in pointer container library
ramey 1121 xml_archive_exception is missing seperate header file_ and
documentation mismatch
ramey 1137 Virtual destructor is missing
ramey 1141 Dangerious operator<< for wostream
ramey 1142 boost/serialization/optional doesn't include necessary header
ramey 1223 boost::serialization chokes on correcly formatted empty XML element
ramey 1267 Assertion `new_cid == cid' failed in basic_iarchive
ramey 1285 [serialization] problem when including shared_ptr_132.hpp
ramey 1286 Missing/Incorrect dllimport/dllexport directives prevent
Windows DLLs from building
ramey 1290 Serialization export.hpp (or type_info_implementation.hpp)
is NOT self-contained and causes compile error
ramey 1382 Missing #pragma warning(pop) in void_cast.hpp
ramey 757 xml serialization fails when using namespace
ramey 878 error C2039: 'mbstate_t' : is not a member of 'std'
ramey 961 boost::basic_binary_oprimitive not instantiated correctly
ramey 968 xml_grammar - incorrect define char
ramey 969 basic_binary_iprimitive::load_binary bug
rogeeff 1030 execution_monitor.ipp #warning directive breaks
compilation on MSVC 8.0
rogeeff 1032 typo in Boost.Test documentation
rogeeff 1050 BOOST_CHECK_CLOSE_FRACTION documentation missing
rogeeff 1060 no example sources in online docs for Boost::Test
rogeeff 1212 Template fixtures
rogeeff 1383 signal.h features not found on Mac OS
rogeeff 607 Log level names wrong in documentation
rogeeff 842 typo in auto_unit_test.hpp Revision 1.17
rogeeff 893 grammatical error in error message
rogeeff 956 Doc error in test examples.
rogeeff 962 Missing links in Test library documentation
samuel_k 585 64 bit compile warning/error for boost::format
samuel_krempp 1195 patch: boost/format/parsing.hpp does not compile
if BOOST_NO_LOCALE_ISDIGIT is defined
samuel_krempp 1196 Patch: when BOOST_NO_STD_LOCALE is not defined_
boost/format/internals.hpp fails to compile.
samuel_krempp 1278 declaration of 'str' shadows a member of 'this'
samuel_krempp 704 format zero length string msvc-8
samuel_krempp 859 boost::format ignores a user defined locale
shammah 284 pool::purge_memory() does not reset next_size
shammah 290 perfomance: memory cleanup for pool takes too long
shammah 386 boost::pool_allocator breaks with vector of vectors
shammah 88 ct_gcd_lcm.hpp compilation error
speedsnail 1138 Problems with TSS and static thread library
t_schwinger 1100 Building boost.function_types fails cvs rev-1.1_ no
chdir command in bash
t_schwinger 1332 Inclusion of non existing file
boost/fusion/sequence/utility/unpack_args.hpp in
boost/fusion/sequence/utility.hpp
turkanis 1033 iostreams::restrict doesn't work on an iostreams::file_source
turkanis 1070 [iostreams]boost\iostreams\copy.hpp line80 copy_impl
turkanis 525 problem with boost::iostreams when compiled with Visual C++
turkanis 699 Changing size of memory-mapped file on Windows
turkanis 786 bug in iostreams/copy.hpp line 81
turkanis 791 iostreams::tee_filter is for output only
turkanis 817 Performance problem in iostreams
turkanis 822 Incorrect usage of bad_write()_ bad_seek() etc.
turkanis 823 Seekable file_descriptor_source /sink?
turkanis 824 BOOST_IOSTREAMS_HAS_LSEEK64 on Mac OS X
turkanis 856 iostreams file_descriptor::write fails under Win32
urzuga 574 [boost::lambda] Compile error with libstdc++ debug mode
urzuga 781 Lambda: (_1 + "y")(string("x")) Doesn't Compile
vladimir_prus 1165 more quoting problems
vladimir_prus 1274 Useless error message
vladimir_prus 1275 boost::program_options::validation_error::what() is private
vladimir_prus 1321 invalid docbook in tool documentation
vladimir_prus 469 multitoken broken
vladimir_prus 689 [program_options] Endless loop with long default arguments
witt 1046 Boost.Python quickstart instructions mention nonexistent target
witt 583 Fixes for build on IBM pSeries for AIX and Linux
witt 834 Homepage regression links
witt 957 The "Getting Started" page does not mention the stdlib option
witt 973 zip_iterator has value_type == reference
--
-- Marshall
Marshall Clow Qualcomm, Inc. <mailto:mclow@qualcomm.com>
The famous British scientist, Lord Kelvin, said: "When you measure
what you are speaking about and express it in numbers, you know
something about it, but when you cannot (or do not) measure it, when
you cannot (or do not) express it in numbers, then your knowledge is
of a meagre and unsatisfactory kind."
1
0
Boost regression test failures
Report time: 2007-10-29T11:16:23Z
This report lists all regression test failures on release platforms.
Detailed report:
http://boost.org/regression/trunk/developer/issues.html
The following platforms have a large number of failures:
borland-5.6.4
borland-5.8.2
3553 failures in 65 libraries (419 are from non-broken platforms)
algorithm/minmax (0 of 4 failures are from non-broken platforms)
algorithm/string (0 of 14 failures are from non-broken platforms)
any (0 of 2 failures are from non-broken platforms)
array (0 of 10 failures are from non-broken platforms)
asio (2)
assign (0 of 16 failures are from non-broken platforms)
bimap (31 of 167 failures are from non-broken platforms)
bind (0 of 46 failures are from non-broken platforms)
circular_buffer (0 of 8 failures are from non-broken platforms)
concept_check (6 of 20 failures are from non-broken platforms)
config (0 of 10 failures are from non-broken platforms)
conversion (6 of 22 failures are from non-broken platforms)
crc (0 of 2 failures are from non-broken platforms)
date_time (0 of 107 failures are from non-broken platforms)
disjoint_sets (0 of 2 failures are from non-broken platforms)
dynamic_bitset (2 of 9 failures are from non-broken platforms)
filesystem (3 of 27 failures are from non-broken platforms)
foreach (0 of 24 failures are from non-broken platforms)
format (0 of 8 failures are from non-broken platforms)
function (0 of 22 failures are from non-broken platforms)
functional (0 of 2 failures are from non-broken platforms)
functional/hash (0 of 54 failures are from non-broken platforms)
fusion (55 of 507 failures are from non-broken platforms)
gil (4 of 8 failures are from non-broken platforms)
graph (9)
integer (0 of 6 failures are from non-broken platforms)
interprocess (2)
io (0 of 2 failures are from non-broken platforms)
iostreams (0 of 56 failures are from non-broken platforms)
iterator (0 of 32 failures are from non-broken platforms)
logic (0 of 6 failures are from non-broken platforms)
math (87 of 294 failures are from non-broken platforms)
mpl (1 of 157 failures are from non-broken platforms)
numeric/conversion (0 of 2 failures are from non-broken platforms)
numeric/interval (0 of 12 failures are from non-broken platforms)
optional (3 of 13 failures are from non-broken platforms)
parameter (0 of 27 failures are from non-broken platforms)
pool (0 of 2 failures are from non-broken platforms)
preprocessor (0 of 28 failures are from non-broken platforms)
program_options (0 of 28 failures are from non-broken platforms)
property_map (0 of 4 failures are from non-broken platforms)
ptr_container (1)
python (3)
random (0 of 2 failures are from non-broken platforms)
range (3 of 25 failures are from non-broken platforms)
rational (0 of 6 failures are from non-broken platforms)
regex (0 of 73 failures are from non-broken platforms)
serialization (20 of 953 failures are from non-broken platforms)
signals (0 of 10 failures are from non-broken platforms)
smart_ptr (0 of 30 failures are from non-broken platforms)
spirit (11)
static_assert (0 of 4 failures are from non-broken platforms)
system (2 of 34 failures are from non-broken platforms)
test (7)
thread (2 of 54 failures are from non-broken platforms)
timer (0 of 2 failures are from non-broken platforms)
tokenizer (0 of 12 failures are from non-broken platforms)
tr1 (2 of 226 failures are from non-broken platforms)
tuple (0 of 6 failures are from non-broken platforms)
type_traits (0 of 100 failures are from non-broken platforms)
typeof (5 of 24 failures are from non-broken platforms)
utility (1 of 30 failures are from non-broken platforms)
variant (0 of 16 failures are from non-broken platforms)
wave (1)
xpressive (150)
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/minmax|
minmax: borland-5.6.4* borland-5.8.2*
minmax_element: borland-5.6.4* borland-5.8.2*
|algorithm/string|
conv: borland-5.6.4* borland-5.8.2*
find: borland-5.6.4* borland-5.8.2*
join: borland-5.6.4* borland-5.8.2*
predicate: borland-5.6.4* borland-5.8.2*
replace: borland-5.6.4* borland-5.8.2*
split: borland-5.6.4* borland-5.8.2*
trim: borland-5.6.4* borland-5.8.2*
|any|
any_test: borland-5.6.4* borland-5.8.2*
|array|
array0: borland-5.6.4* borland-5.8.2*
array1: borland-5.6.4* borland-5.8.2*
array2: borland-5.6.4* borland-5.8.2*
array3: borland-5.8.2*
array4: borland-5.8.2*
array5: borland-5.6.4* borland-5.8.2*
|asio|
ip_multicast: acc
ip_multicast_select: acc
|assign|
basic: borland-5.6.4* borland-5.8.2*
email_example: borland-5.6.4* borland-5.8.2*
list_inserter: borland-5.6.4* borland-5.8.2*
list_of_workaround: borland-5.6.4* borland-5.8.2*
my_vector_example: borland-5.6.4* borland-5.8.2*
static_list_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
std: borland-5.6.4* borland-5.8.2*
|bimap|
assign: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
foreach: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
lambda: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
property_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
serialization: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_assign: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_convenience_header: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_extra: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_info: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_lambda: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_list_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_modify: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_multiset_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_mutable: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_operator_bracket: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_ordered: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_project: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_property_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_sequenced: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_serialization: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_set_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_unconstrained: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_unordered: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_unordered_multiset_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_unordered_set_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_vector_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutant: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutant_relation: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_structured_pair: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_tagged: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
typeof: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
xpressive: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0 sun-5.8
|bind|
bind_const_test: borland-5.6.4* borland-5.8.2*
bind_cv_test: borland-5.6.4* borland-5.8.2*
bind_dm2_test: borland-5.6.4* borland-5.8.2*
bind_dm_test: borland-5.6.4* borland-5.8.2*
bind_eq_test: borland-5.6.4* borland-5.8.2*
bind_function_test: borland-5.6.4* borland-5.8.2*
bind_lookup_problem_test: borland-5.6.4* borland-5.8.2*
bind_not_test: borland-5.6.4* borland-5.8.2*
bind_placeholder_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
bind_rel_test: borland-5.6.4* borland-5.8.2*
bind_rv_sp_test: borland-5.6.4* borland-5.8.2*
bind_rvalue_test: borland-5.6.4* borland-5.8.2*
bind_stateful_test: borland-5.6.4* borland-5.8.2*
bind_test: borland-5.6.4* borland-5.8.2*
bind_unary_addr: borland-5.6.4* borland-5.8.2*
bind_visit_test: borland-5.6.4* borland-5.8.2*
mem_fn_derived_test: borland-5.6.4* borland-5.8.2*
mem_fn_dm_test: borland-5.6.4* borland-5.8.2*
mem_fn_eq_test: borland-5.6.4* borland-5.8.2*
mem_fn_rv_test: borland-5.6.4* borland-5.8.2*
mem_fn_test: borland-5.6.4* borland-5.8.2*
mem_fn_void_test: borland-5.6.4* borland-5.8.2*
|circular_buffer|
base_test: borland-5.6.4* borland-5.8.2*
bounded_buffer_comparison: borland-5.6.4* borland-5.8.2*
soft_iterator_invalidation: borland-5.6.4* borland-5.8.2*
space_optimized_test: borland-5.6.4* borland-5.8.2*
|concept_check|
class_concept_check_test: borland-5.6.4* borland-5.8.2*
class_concept_fail_expected: sun-5.8
concept_check_test: borland-5.6.4* borland-5.8.2*
old_concept_class_fail: borland-5.6.4* borland-5.8.2* sun-5.8
old_concept_function_fail: borland-5.6.4* borland-5.8.2* sun-5.8
old_concept_pass: borland-5.6.4* borland-5.8.2*
stl_concept_check: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
usage_fail: sun-5.8
where: borland-5.6.4* borland-5.8.2*
where_fail: sun-5.8
|config|
abi_test: borland-5.6.4* borland-5.8.2*
config_info: borland-5.6.4* borland-5.8.2*
config_link_test: borland-5.6.4* borland-5.8.2*
config_test: borland-5.6.4* borland-5.8.2*
math_info: borland-5.6.4* borland-5.8.2*
|conversion|
cast_test: borland-5.6.4* borland-5.8.2*
implicit_cast: borland-5.6.4* borland-5.8.2*
lexical_cast_loopback_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 msvc-8.0 msvc-8.0 sun-5.8
lexical_cast_noncopyable_test: borland-5.6.4* borland-5.8.2*
lexical_cast_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
numeric_cast_test: borland-5.6.4* borland-5.8.2*
|crc|
crc_test: borland-5.6.4* borland-5.8.2*
|date_time|
testc_local_adjustor: borland-5.6.4* borland-5.8.2*
testclock: borland-5.6.4* borland-5.8.2*
testconstrained_value: borland-5.6.4* borland-5.8.2*
testcustom_time_zone: borland-5.8.2*
testdate: borland-5.6.4* borland-5.8.2*
testdate_dll: borland-5.6.4* borland-5.8.2*
testdate_duration: borland-5.6.4* borland-5.8.2*
testdate_duration_dll: borland-5.6.4* borland-5.8.2*
testdate_input_facet: borland-5.6.4* borland-5.8.2*
testdate_input_facet_dll: borland-5.6.4* borland-5.8.2*
testdate_iterator: borland-5.6.4* borland-5.8.2*
testdate_iterator_dll: borland-5.6.4* borland-5.8.2*
testdst_rules: borland-5.6.4* borland-5.8.2*
testdst_transition_day_rule: borland-5.6.4* borland-5.8.2*
testduration: borland-5.6.4* borland-5.8.2*
testfiletime_functions: borland-5.6.4* borland-5.8.2*
testformatters: borland-5.6.4* borland-5.8.2*
testformatters_dll: borland-5.6.4* borland-5.8.2*
testgenerators: borland-5.6.4* borland-5.8.2*
testgenerators_dll: borland-5.6.4* borland-5.8.2*
testgeneric_period: borland-5.6.4* borland-5.8.2*
testgreg_cal: borland-5.6.4* borland-5.8.2*
testgreg_cal_dll: borland-5.6.4* borland-5.8.2*
testgreg_day: borland-5.6.4* borland-5.8.2*
testgreg_day_dll: borland-5.6.4* borland-5.8.2*
testgreg_duration_operators: borland-5.6.4* borland-5.8.2*
testgreg_durations: borland-5.6.4* borland-5.8.2*
testgreg_durations_dll: borland-5.6.4* borland-5.8.2*
testgreg_month: borland-5.6.4* borland-5.8.2*
testgreg_month_dll: borland-5.6.4* borland-5.8.2*
testgreg_serialize: borland-5.6.4* borland-5.8.2*
testgreg_serialize_dll: borland-5.6.4* borland-5.8.2*
testgreg_serialize_xml: borland-5.6.4* borland-5.8.2*
testgreg_year: borland-5.6.4* borland-5.8.2*
testgreg_year_dll: borland-5.6.4* borland-5.8.2*
testgregorian_calendar: borland-5.6.4* borland-5.8.2*
testint_adapter: borland-5.6.4* borland-5.8.2*
testiterator: borland-5.6.4* borland-5.8.2*
testlocal_adjustor: borland-5.6.4* borland-5.8.2*
testparse_time: borland-5.6.4* borland-5.8.2*
testperiod: borland-5.6.4* borland-5.8.2*
testperiod_dll: borland-5.6.4* borland-5.8.2*
testposix_time_zone: borland-5.8.2*
testtime: borland-5.6.4* borland-5.8.2*
testtime_formatters: borland-5.6.4* borland-5.8.2*
testtime_period: borland-5.6.4* borland-5.8.2*
testtime_resolution_traits: borland-5.6.4* borland-5.8.2*
testtime_serialize: borland-5.6.4* borland-5.8.2*
testtime_serialize_std_config: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml_std_config: borland-5.6.4* borland-5.8.2*
testtz_database: borland-5.8.2*
testwcustom_time_zone: borland-5.6.4* borland-5.8.2*
testwposix_time_zone: borland-5.6.4* borland-5.8.2*
testwrapping_int: borland-5.6.4* borland-5.8.2*
|disjoint_sets|
disjoint_set_test: borland-5.6.4* borland-5.8.2*
|dynamic_bitset|
dyn_bitset_unit_tests1: borland-5.6.4* borland-5.8.2*
dyn_bitset_unit_tests2: borland-5.6.4*
dyn_bitset_unit_tests3: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
dyn_bitset_unit_tests4: borland-5.6.4* borland-5.8.2* sun-5.8
|filesystem|
convenience_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
fstream_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
large_file_support_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
operations_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5 msvc-8.0
operations_test_dll: msvc-8.0
path_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
simple_ls: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|foreach|
array_byref: borland-5.6.4* borland-5.8.2*
array_byval: borland-5.6.4* borland-5.8.2*
call_once: borland-5.6.4* borland-5.8.2*
cstr_byref: borland-5.6.4* borland-5.8.2*
cstr_byval: borland-5.6.4* borland-5.8.2*
dependent_type: borland-5.6.4* borland-5.8.2*
noncopyable: borland-5.6.4* borland-5.8.2*
pair_byref: borland-5.6.4* borland-5.8.2*
pair_byval: borland-5.6.4* borland-5.8.2*
stl_byref: borland-5.6.4* borland-5.8.2*
stl_byval: borland-5.6.4* borland-5.8.2*
user_defined: borland-5.6.4* borland-5.8.2*
|format|
format_test1: borland-5.6.4* borland-5.8.2*
format_test2: borland-5.6.4* borland-5.8.2*
format_test3: borland-5.6.4* borland-5.8.2*
format_test_wstring: borland-5.6.4* borland-5.8.2*
|function|
allocator_test: borland-5.6.4* borland-5.8.2*
contains2_test: borland-5.6.4* borland-5.8.2*
contains_test: borland-5.6.4* borland-5.8.2*
function_30: borland-5.6.4* borland-5.8.2*
function_arith_portable: borland-5.6.4* borland-5.8.2*
function_n_test: borland-5.6.4* borland-5.8.2*
function_ref_portable: borland-5.6.4* borland-5.8.2*
mem_fun_portable: borland-5.6.4* borland-5.8.2*
stateless_test: borland-5.6.4* borland-5.8.2*
std_bind_portable: borland-5.6.4* borland-5.8.2*
sum_avg_portable: borland-5.6.4* borland-5.8.2*
|functional|
function_test: borland-5.6.4* borland-5.8.2*
|functional/hash|
books: borland-5.6.4* borland-5.8.2*
container_fwd_test: borland-5.6.4* borland-5.8.2*
hash_built_in_array_test: borland-5.6.4* borland-5.8.2*
hash_complex_test: borland-5.6.4* borland-5.8.2*
hash_custom_test: borland-5.6.4* borland-5.8.2*
hash_deprecated_headers: borland-5.6.4* borland-5.8.2*
hash_deque_test: borland-5.6.4* borland-5.8.2*
hash_float_test: borland-5.6.4* borland-5.8.2*
hash_friend_test: borland-5.6.4* borland-5.8.2*
hash_function_pointer_test: borland-5.6.4* borland-5.8.2*
hash_fwd_test_1: borland-5.6.4* borland-5.8.2*
hash_fwd_test_2: borland-5.6.4* borland-5.8.2*
hash_list_test: borland-5.6.4* borland-5.8.2*
hash_long_double_test: borland-5.6.4* borland-5.8.2*
hash_map_test: borland-5.6.4* borland-5.8.2*
hash_no_ext_macro_1: borland-5.6.4* borland-5.8.2*
hash_no_ext_macro_2: borland-5.6.4* borland-5.8.2*
hash_number_test: borland-5.6.4* borland-5.8.2*
hash_pointer_test: borland-5.6.4* borland-5.8.2*
hash_range_test: borland-5.6.4* borland-5.8.2*
hash_set_test: borland-5.6.4* borland-5.8.2*
hash_string_test: borland-5.6.4* borland-5.8.2*
hash_value_array_test: borland-5.6.4* borland-5.8.2*
hash_vector_test: borland-5.6.4* borland-5.8.2*
link_ext_test: borland-5.6.4* borland-5.8.2*
link_test: borland-5.6.4* borland-5.8.2*
portable: borland-5.6.4* borland-5.8.2*
|fusion|
adapt_assoc_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
adapt_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
all: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
any: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
array: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_list: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
as_set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
back_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
boost_tuple: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
clear: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
cons: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
count: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
count_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deduce_sequence: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
erase: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
erase_key: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
filter: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
filter_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
filter_view: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
find: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
find_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fold: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
for_each: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
front_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fused: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
insert: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
insert_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
invoke: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
invoke_function_object: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
invoke_procedure: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
io: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
join: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
joint_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_list: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
map_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
none: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
pop_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
pop_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
push_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
push_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
remove: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
remove_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
repetitive_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
replace: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
replace_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
reverse: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
reverse_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
single_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
std_pair: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
swap: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
transform: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
transform_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_element: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_typed: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
variant: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
vector_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_n: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
vector_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
zip_view2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
zip_view_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
|gil|
main: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 sun-5.8
|graph|
cycle_ratio_tests: msvc-8.0
graphml_test: msvc-8.0
graphviz_test: msvc-8.0
kolmogorov_max_flow_test: acc hp_cxx-71_006_tru64
max_flow_test: acc hp_cxx-71_006_tru64
transitive_closure_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
|integer|
cstdint_test: borland-5.6.4* borland-5.8.2*
integer_test: borland-5.6.4* borland-5.8.2*
integer_traits_test: borland-5.6.4* borland-5.8.2*
|interprocess|
deque_test: hp_cxx-71_006_tru64
node_pool_test: hp_cxx-71_006_tru64
|io|
ios_state_test: borland-5.6.4* borland-5.8.2*
|iostreams|
array_test: borland-5.6.4* borland-5.8.2*
auto_close_test: borland-5.6.4* borland-5.8.2*
buffer_size_test: borland-5.6.4* borland-5.8.2*
code_converter_test: borland-5.6.4* borland-5.8.2*
component_access_test: borland-5.6.4* borland-5.8.2*
compose_test: borland-5.8.2*
copy_test: borland-5.6.4* borland-5.8.2*
counter_test: borland-5.6.4* borland-5.8.2*
direct_adapter_test: borland-5.6.4* borland-5.8.2*
example_test: borland-5.6.4* borland-5.8.2*
file_descriptor_test: borland-5.6.4* borland-5.8.2*
file_test: borland-5.6.4* borland-5.8.2*
filtering_stream_test: borland-5.6.4* borland-5.8.2*
flush_test: borland-5.6.4* borland-5.8.2*
invert_test: borland-5.6.4* borland-5.8.2*
line_filter_test: borland-5.6.4* borland-5.8.2*
mapped_file_test: borland-5.6.4* borland-5.8.2*
newline_test: borland-5.6.4* borland-5.8.2*
null_test: borland-5.6.4* borland-5.8.2*
pipeline_test: borland-5.6.4* borland-5.8.2*
positioning_test: borland-5.6.4* borland-5.8.2*
regex_filter_test: borland-5.6.4* borland-5.8.2*
restrict_test: borland-5.6.4* borland-5.8.2*
seekable_file_test: borland-5.8.2*
seekable_filter_test: borland-5.6.4* borland-5.8.2*
stdio_filter_test: borland-5.6.4* borland-5.8.2*
symmetric_filter_test: borland-5.6.4* borland-5.8.2*
tee_test: borland-5.6.4* borland-5.8.2*
wide_stream_test: borland-5.6.4* borland-5.8.2*
|iterator|
concept_tests: borland-5.6.4* borland-5.8.2*
counting_iterator_test: borland-5.6.4* borland-5.8.2*
filter_iterator_test: borland-5.6.4* borland-5.8.2*
indirect_iterator_test: borland-5.6.4* borland-5.8.2*
interoperable: borland-5.6.4* borland-5.8.2*
is_lvalue_iterator: borland-5.6.4* borland-5.8.2*
is_readable_iterator: borland-5.6.4* borland-5.8.2*
iterator_adaptor_cc: borland-5.6.4* borland-5.8.2*
iterator_adaptor_test: borland-5.6.4* borland-5.8.2*
iterator_archetype_cc: borland-5.6.4* borland-5.8.2*
iterator_facade: borland-5.6.4* borland-5.8.2*
iterator_traits_test: borland-5.6.4* borland-5.8.2*
permutation_iterator_test: borland-5.6.4* borland-5.8.2*
reverse_iterator_test: borland-5.6.4* borland-5.8.2*
transform_iterator_test: borland-5.6.4* borland-5.8.2*
unit_tests: borland-5.6.4* borland-5.8.2*
|logic|
tribool_io_test: borland-5.6.4* borland-5.8.2*
tribool_rename_test: borland-5.6.4* borland-5.8.2*
tribool_test: borland-5.6.4* borland-5.8.2*
|math|
common_factor_test: borland-5.8.2* sun-5.8
dist_bernoulli_incl_test: borland-5.6.4* borland-5.8.2*
dist_beta_incl_test: borland-5.8.2*
dist_binomial_incl_test: borland-5.6.4* borland-5.8.2* sun-5.8
dist_chi_squared_incl_test: borland-5.8.2*
dist_complement_incl_test: borland-5.6.4* borland-5.8.2*
dist_extreme_val_incl_test: borland-5.6.4* borland-5.8.2*
dist_fisher_f_incl_test: borland-5.8.2*
dist_gamma_incl_test: borland-5.8.2*
dist_neg_binom_incl_test: borland-5.6.4* borland-5.8.2* sun-5.8
dist_poisson_incl_test: borland-5.6.4* borland-5.8.2* sun-5.8
dist_students_t_incl_test: borland-5.8.2*
dist_triangular_incl_test: borland-5.6.4* borland-5.8.2*
dist_uniform_incl_test: borland-5.6.4* borland-5.8.2*
dist_weibull_incl_test: borland-5.6.4* borland-5.8.2*
distribution_concept_check: borland-5.6.4* borland-5.8.2*
hypot_test: borland-5.6.4* borland-5.8.2*
log1p_expm1_test: borland-5.8.2*
octonion_test: borland-5.8.2*
powm1_sqrtp1m1_test: borland-5.6.4* borland-5.8.2*
quaternion_mult_incl_test: borland-5.6.4* borland-5.8.2*
quaternion_test: borland-5.8.2*
sf_bessel_incl_test: borland-5.8.2*
sf_beta_incl_test: borland-5.8.2*
sf_binomial_incl_test: borland-5.6.4* borland-5.8.2*
sf_cbrt_incl_test: borland-5.8.2*
sf_cos_pi_incl_test: borland-5.6.4* borland-5.8.2*
sf_digamma_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_1_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_2_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_3_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_rc_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_rd_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_rf_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_rj_incl_test: borland-5.6.4* borland-5.8.2*
sf_erf_incl_test: borland-5.6.4* borland-5.8.2*
sf_expm1_incl_test: borland-5.6.4* borland-5.8.2*
sf_factorials_incl_test: borland-5.6.4* borland-5.8.2*
sf_fpclassify_incl_test: borland-5.6.4* borland-5.8.2*
sf_hermite_incl_test: borland-5.6.4* borland-5.8.2*
sf_hypot_incl_test: borland-5.6.4* borland-5.8.2*
sf_laguerre_incl_test: borland-5.6.4* borland-5.8.2*
sf_lanczos_incl_test: borland-5.6.4* borland-5.8.2*
sf_log1p_incl_test: borland-5.6.4* borland-5.8.2*
sf_math_fwd_incl_test: borland-5.6.4* borland-5.8.2*
sf_powm1_incl_test: borland-5.6.4* borland-5.8.2*
sf_sign_incl_test: borland-5.6.4* borland-5.8.2* sun-5.8
sf_sin_pi_incl_test: borland-5.6.4* borland-5.8.2*
sf_sinc_incl_test: borland-5.6.4* borland-5.8.2*
sf_sinhc_incl_test: borland-5.6.4* borland-5.8.2*
sf_sph_harm_incl_test: borland-5.6.4* borland-5.8.2*
sf_sqrt1pm1_incl_test: borland-5.6.4* borland-5.8.2*
special_functions_test: borland-5.8.2*
std_real_concept_check: hp_cxx-71_006_tru64 sun-5.8
test_bessel_i: borland-5.6.4* borland-5.8.2* sun-5.8
test_bessel_j: borland-5.8.2* sun-5.8
test_bessel_k: borland-5.6.4* borland-5.8.2* sun-5.8
test_bessel_y: borland-5.8.2* sun-5.8
test_beta: borland-5.6.4* borland-5.8.2*
test_beta_dist: sun-5.8
test_binomial_coeff: sun-5.8
test_binomial_double: sun-5.8
test_binomial_float: sun-5.8
test_binomial_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_binomial_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_carlson: borland-5.8.2* sun-5.8
test_cauchy: sun-5.8
test_cbrt: borland-5.8.2*
test_chi_squared: borland-5.8.2* sun-5.8
test_classify: borland-5.8.2* sun-5.8
test_constants: borland-5.6.4* borland-5.8.2* sun-5.8
test_digamma: borland-5.6.4* borland-5.8.2* sun-5.8
test_dist_overloads: sun-5.8
test_ellint_1: borland-5.6.4* borland-5.8.2* sun-5.8
test_ellint_2: borland-5.6.4* borland-5.8.2* sun-5.8
test_ellint_3: sun-5.8
test_erf: borland-5.6.4* borland-5.8.2* sun-5.8
test_error_handling: borland-5.6.4* borland-5.8.2*
test_exponential_dist: sun-5.8
test_extreme_value: borland-5.6.4* borland-5.8.2* sun-5.8
test_factorials: sun-5.8
test_find_location: sun-5.8
test_find_scale: sun-5.8
test_fisher_f: borland-5.8.2* sun-5.8
test_gamma: borland-5.6.4* borland-5.8.2* sun-5.8
test_gamma_dist: borland-5.8.2* sun-5.8
test_ibeta_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_float: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_inv_ab_double: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_ab_float: sun-5.8
test_ibeta_inv_ab_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_inv_ab_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_inv_double: hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_float: sun-5.8
test_ibeta_inv_long_double: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_long_double: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma_inv_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_igamma_inv_float: borland-5.8.2* sun-5.8
test_igamma_inv_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma_inv_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma_inva_double: hp_cxx-71_006_tru64 sun-5.8
test_igamma_inva_float: sun-5.8
test_igamma_inva_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma_inva_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_instantiate1: sun-5.8
test_legendre: sun-5.8
test_lognormal: sun-5.8
test_minima: borland-5.6.4* borland-5.8.2*
test_negative_binomial_double: sun-5.8
test_negative_binomial_float: borland-5.8.2* sun-5.8
test_negative_binomial_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_negative_binomial_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_normal: sun-5.8
test_pareto: borland-5.6.4* borland-5.8.2*
test_poisson_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_poisson_float: borland-5.6.4* borland-5.8.2*
test_poisson_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_poisson_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_policy: gcc-mingw-3.4.5
test_policy_2: borland-5.6.4* borland-5.8.2*
test_policy_sf: sun-5.8
test_rationals: borland-5.6.4* borland-5.8.2*
test_rayleigh: sun-5.8
test_roots: hp_cxx-71_006_tru64 sun-5.8
test_spherical_harmonic: borland-5.6.4* borland-5.8.2* sun-5.8
test_students_t: borland-5.8.2* sun-5.8
test_tgamma_ratio: borland-5.6.4* borland-5.8.2* sun-5.8
test_traits: sun-5.8
test_triangular: borland-5.8.2* sun-5.8
test_uniform: borland-5.8.2*
test_weibull: borland-5.6.4* borland-5.8.2* sun-5.8
tools_config_inc_test: borland-5.6.4* borland-5.8.2*
tools_fraction_inc_test: borland-5.6.4* borland-5.8.2*
tools_minima_inc_test: borland-5.6.4* borland-5.8.2*
tools_polynomial_inc_test: borland-5.6.4* borland-5.8.2*
tools_precision_inc_test: borland-5.6.4* borland-5.8.2*
tools_rational_inc_test: borland-5.6.4* borland-5.8.2*
tools_real_cast_inc_test: borland-5.6.4* borland-5.8.2*
tools_roots_inc_test: sun-5.8
tools_stats_inc_test: borland-5.6.4* borland-5.8.2*
tools_test_data_inc_test: sun-5.8
tools_test_inc_test: borland-5.6.4* borland-5.8.2*
tools_toms748_inc_test: borland-5.6.4* borland-5.8.2*
|mpl|
advance: borland-5.6.4* borland-5.8.2*
always: borland-5.6.4* borland-5.8.2*
apply: gcc-4.1.2_sunos_i86pc
apply_wrap: borland-5.6.4* borland-5.8.2*
arithmetic: borland-5.6.4* borland-5.8.2*
assert: borland-5.6.4* borland-5.8.2*
at: borland-5.6.4* borland-5.8.2*
back: borland-5.6.4* borland-5.8.2*
bind: borland-5.6.4* borland-5.8.2*
bitwise: borland-5.6.4* borland-5.8.2*
bool: borland-5.6.4* borland-5.8.2*
comparison: borland-5.6.4* borland-5.8.2*
contains: borland-5.6.4* borland-5.8.2*
copy: borland-5.6.4* borland-5.8.2*
copy_if: borland-5.6.4* borland-5.8.2*
count: borland-5.6.4* borland-5.8.2*
count_if: borland-5.6.4* borland-5.8.2*
deque: borland-5.6.4* borland-5.8.2*
distance: borland-5.6.4* borland-5.8.2*
empty: borland-5.6.4* borland-5.8.2*
equal: borland-5.6.4* borland-5.8.2*
erase: borland-5.6.4* borland-5.8.2*
erase_range: borland-5.6.4* borland-5.8.2*
eval_if: borland-5.6.4* borland-5.8.2*
filter_view: borland-5.6.4* borland-5.8.2*
find: borland-5.6.4* borland-5.8.2*
find_if: borland-5.6.4* borland-5.8.2*
fold: borland-5.6.4* borland-5.8.2*
for_each: borland-5.6.4* borland-5.8.2*
front: borland-5.6.4* borland-5.8.2*
identity: borland-5.6.4* borland-5.8.2*
if: borland-5.6.4* borland-5.8.2*
index_of: borland-5.6.4* borland-5.8.2*
inherit: borland-5.6.4* borland-5.8.2*
insert: borland-5.6.4* borland-5.8.2*
insert_range: borland-5.6.4* borland-5.8.2*
int: borland-5.6.4* borland-5.8.2*
integral_c: borland-5.6.4* borland-5.8.2*
is_placeholder: borland-5.6.4* borland-5.8.2*
iterator_tags: borland-5.6.4* borland-5.8.2*
joint_view: borland-5.6.4* borland-5.8.2*
lambda: borland-5.6.4* borland-5.8.2*
lambda_args: borland-5.6.4* borland-5.8.2*
largest_int: borland-5.6.4* borland-5.8.2*
list: borland-5.6.4* borland-5.8.2*
list_c: borland-5.6.4* borland-5.8.2*
logical: borland-5.6.4* borland-5.8.2*
lower_bound: borland-5.6.4* borland-5.8.2*
max_element: borland-5.6.4* borland-5.8.2*
min_max: borland-5.6.4* borland-5.8.2*
msvc_is_class: borland-5.6.4* borland-5.8.2*
next: borland-5.6.4* borland-5.8.2*
no_has_xxx: borland-5.6.4* borland-5.8.2*
numeric_ops: borland-5.6.4* borland-5.8.2*
pair_view: borland-5.6.4* borland-5.8.2*
partition: borland-5.6.4* borland-5.8.2*
pop_front: borland-5.6.4* borland-5.8.2*
push_front: borland-5.6.4* borland-5.8.2*
range_c: borland-5.6.4* borland-5.8.2*
remove: borland-5.6.4* borland-5.8.2*
remove_if: borland-5.6.4* borland-5.8.2*
replace: borland-5.6.4* borland-5.8.2*
replace_if: borland-5.6.4* borland-5.8.2*
reverse: borland-5.6.4* borland-5.8.2*
same_as: borland-5.6.4* borland-5.8.2*
single_view: borland-5.6.4* borland-5.8.2*
size: borland-5.6.4* borland-5.8.2*
size_t: borland-5.6.4* borland-5.8.2*
sizeof: borland-5.6.4* borland-5.8.2*
sort: borland-5.6.4* borland-5.8.2*
stable_partition: borland-5.6.4* borland-5.8.2*
template_arity: borland-5.6.4* borland-5.8.2*
transform: borland-5.6.4* borland-5.8.2*
transform_view: borland-5.6.4* borland-5.8.2*
unique: borland-5.6.4* borland-5.8.2*
unpack_args: borland-5.6.4* borland-5.8.2*
upper_bound: borland-5.6.4* borland-5.8.2*
vector: borland-5.6.4* borland-5.8.2*
vector_c: borland-5.6.4* borland-5.8.2*
|numeric/conversion|
numeric_cast_test: borland-5.6.4* borland-5.8.2*
|numeric/interval|
add: borland-5.8.2*
cmp: borland-5.8.2*
cmp_exn: borland-5.8.2*
cmp_exp: borland-5.8.2*
cmp_lex: borland-5.8.2*
cmp_set: borland-5.8.2*
cmp_tribool: borland-5.8.2*
fmod: borland-5.8.2*
mul: borland-5.8.2*
pi: borland-5.8.2*
pow: borland-5.8.2*
test_float: borland-5.8.2*
|optional|
optional_test: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 hp_cxx-71_006_tru64
optional_test_inplace: borland-5.6.4* borland-5.8.2*
optional_test_io: borland-5.6.4* borland-5.8.2*
optional_test_ref: borland-5.6.4* borland-5.8.2*
optional_test_tie: borland-5.6.4* borland-5.8.2*
|parameter|
basics: borland-5.6.4* borland-5.8.2*
compose: borland-5.6.4* borland-5.8.2*
deduced: borland-5.6.4* borland-5.8.2*
deduced_dependent_predicate: borland-5.6.4* borland-5.8.2*
earwicker: borland-5.6.4* borland-5.8.2*
efficiency: borland-5.6.4* borland-5.8.2*
macros: borland-5.6.4* borland-5.8.2*
mpl: borland-5.6.4* borland-5.8.2*
ntp: borland-5.6.4* borland-5.8.2*
preprocessor: borland-5.6.4* borland-5.8.2*
sfinae: borland-5.6.4*
singular: borland-5.6.4* borland-5.8.2*
tutorial: borland-5.6.4* borland-5.8.2*
unwrap_cv_reference: borland-5.6.4* borland-5.8.2*
|pool|
test_pool_alloc: borland-5.6.4* borland-5.8.2*
|preprocessor|
arithmetic: borland-5.6.4* borland-5.8.2*
array: borland-5.6.4* borland-5.8.2*
comparison: borland-5.6.4* borland-5.8.2*
control: borland-5.6.4* borland-5.8.2*
debug: borland-5.6.4* borland-5.8.2*
facilities: borland-5.6.4* borland-5.8.2*
iteration: borland-5.6.4* borland-5.8.2*
list: borland-5.6.4* borland-5.8.2*
logical: borland-5.6.4* borland-5.8.2*
repetition: borland-5.6.4* borland-5.8.2*
selection: borland-5.6.4* borland-5.8.2*
seq: borland-5.6.4* borland-5.8.2*
slot: borland-5.6.4* borland-5.8.2*
tuple: borland-5.6.4* borland-5.8.2*
|program_options|
cmdline_test: borland-5.6.4* borland-5.8.2*
cmdline_test_dll: borland-5.6.4* borland-5.8.2*
options_description_test: borland-5.6.4* borland-5.8.2*
options_description_test_dll: borland-5.6.4* borland-5.8.2*
parsers_test: borland-5.6.4* borland-5.8.2*
parsers_test_dll: borland-5.6.4* borland-5.8.2*
positional_options_test: borland-5.6.4* borland-5.8.2*
positional_options_test_dll: borland-5.6.4* borland-5.8.2*
unicode_test: borland-5.6.4* borland-5.8.2*
unicode_test_dll: borland-5.6.4* borland-5.8.2*
variable_map_test: borland-5.6.4* borland-5.8.2*
variable_map_test_dll: borland-5.6.4* borland-5.8.2*
winmain: borland-5.6.4* borland-5.8.2*
winmain_dll: borland-5.6.4* borland-5.8.2*
|property_map|
dynamic_properties_test: borland-5.6.4* borland-5.8.2*
property_map_cc: borland-5.6.4* borland-5.8.2*
|ptr_container|
serialization: sun-5.8
|python|
exec: gcc-4.1.2_sunos_i86pc
import_: gcc-mingw-3.4.5 msvc-8.0
|random|
random_demo: borland-5.6.4* borland-5.8.2*
|range|
algorithm_example: borland-5.6.4* borland-5.8.2*
const_ranges: borland-5.6.4* borland-5.8.2*
extension_mechanism: borland-5.6.4* borland-5.8.2*
iterator_pair: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
partial_workaround: borland-5.6.4* borland-5.8.2*
reversible_range: borland-5.6.4* borland-5.8.2*
std_container: borland-5.6.4* borland-5.8.2*
sub_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
|rational|
rational_example: borland-5.6.4* borland-5.8.2*
rational_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|regex|
bad_expression_test: borland-5.6.4* borland-5.8.2*
captures_example: borland-5.6.4* borland-5.8.2*
captures_test: borland-5.6.4* borland-5.8.2*
concept_check: borland-5.6.4*
credit_card_example: borland-5.6.4* borland-5.8.2*
icu_concept_check: borland-5.6.4* borland-5.8.2*
icu_example: borland-5.6.4* borland-5.8.2*
mfc_example: borland-5.6.4* borland-5.8.2*
object_cache_test: borland-5.6.4* borland-5.8.2*
partial_regex_grep: borland-5.6.4* borland-5.8.2*
partial_regex_iterate: borland-5.6.4* borland-5.8.2*
partial_regex_match: borland-5.6.4* borland-5.8.2*
posix_api_check: borland-5.6.4* borland-5.8.2*
posix_api_check_cpp: borland-5.6.4* borland-5.8.2*
recursion_test: borland-5.6.4* borland-5.8.2*
regex_config_info: borland-5.6.4* borland-5.8.2*
regex_dll_config_info: borland-5.6.4* borland-5.8.2*
regex_grep_example_1: borland-5.6.4* borland-5.8.2*
regex_grep_example_2: borland-5.6.4* borland-5.8.2*
regex_grep_example_3: borland-5.6.4* borland-5.8.2*
regex_grep_example_4: borland-5.6.4* borland-5.8.2*
regex_iterator_example: borland-5.6.4* borland-5.8.2*
regex_match_example: borland-5.6.4* borland-5.8.2*
regex_merge_example: borland-5.6.4* borland-5.8.2*
regex_replace_example: borland-5.6.4* borland-5.8.2*
regex_search_example: borland-5.6.4* borland-5.8.2*
regex_split_example_1: borland-5.6.4* borland-5.8.2*
regex_split_example_2: borland-5.6.4* borland-5.8.2*
regex_timer: borland-5.6.4* borland-5.8.2*
regex_token_iterator_eg_1: borland-5.6.4* borland-5.8.2*
regex_token_iterator_eg_2: borland-5.6.4* borland-5.8.2*
static_mutex_test: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_collate_info: borland-5.6.4* borland-5.8.2*
test_grep: borland-5.6.4* borland-5.8.2*
unicode_iterator_test: borland-5.8.2*
wide_posix_api_check_c: borland-5.6.4* borland-5.8.2*
wide_posix_api_check_cpp: borland-5.6.4* borland-5.8.2*
|serialization|
test_array_binary_archive: borland-5.6.4* borland-5.8.2*
test_array_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_text_archive: borland-5.6.4* borland-5.8.2*
test_array_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_text_warchive: borland-5.6.4* borland-5.8.2*
test_array_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_array_xml_archive: borland-5.6.4* borland-5.8.2*
test_array_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_xml_warchive: borland-5.6.4* borland-5.8.2*
test_array_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_binary_binary_archive: borland-5.6.4* borland-5.8.2*
test_binary_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_text_archive: borland-5.6.4* borland-5.8.2*
test_binary_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_text_warchive: borland-5.6.4* borland-5.8.2*
test_binary_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_binary_xml_archive: borland-5.6.4* borland-5.8.2*
test_binary_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_xml_warchive: borland-5.6.4* borland-5.8.2*
test_binary_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_binary_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_warchive: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_warchive: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_codecvt_null: borland-5.6.4* borland-5.8.2*
test_const_pass: borland-5.6.4* borland-5.8.2*
test_contained_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_text_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_contained_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_binary_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_warchive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_warchive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_demo: borland-5.6.4* borland-5.8.2*
test_demo_auto_ptr: borland-5.6.4* borland-5.8.2*
test_demo_auto_ptr_dll: borland-5.6.4* borland-5.8.2*
test_demo_dll: borland-5.6.4* borland-5.8.2*
test_demo_exception: borland-5.6.4* borland-5.8.2*
test_demo_exception_dll: borland-5.6.4* borland-5.8.2*
test_demo_fast_archive: borland-5.6.4* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.6.4* borland-5.8.2*
test_demo_pimpl: borland-5.6.4* borland-5.8.2*
test_demo_pimpl_dll: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic_dll: borland-5.6.4* borland-5.8.2*
test_demo_portable_archive: borland-5.6.4* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2*
test_demo_shared_ptr: borland-5.6.4* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.6.4* borland-5.8.2*
test_demo_xml: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_demo_xml_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_demo_xml_load: borland-5.6.4* borland-5.8.2*
test_demo_xml_load_dll: borland-5.6.4* borland-5.8.2*
test_demo_xml_save: borland-5.6.4* borland-5.8.2*
test_demo_xml_save_dll: borland-5.6.4* borland-5.8.2*
test_deque_binary_archive: borland-5.6.4* borland-5.8.2*
test_deque_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_text_archive: borland-5.6.4* borland-5.8.2*
test_deque_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_text_warchive: borland-5.6.4* borland-5.8.2*
test_deque_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_deque_xml_archive: borland-5.6.4* borland-5.8.2*
test_deque_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_xml_warchive: borland-5.6.4* borland-5.8.2*
test_deque_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_binary_archive: borland-5.6.4* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_text_archive: borland-5.6.4* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_text_warchive: borland-5.6.4* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_xml_archive: borland-5.6.4* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_xml_warchive: borland-5.6.4* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_exported_binary_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_binary_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_warchive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_warchive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_warchive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_warchive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_inclusion: borland-5.6.4* borland-5.8.2*
test_iterators: borland-5.6.4* borland-5.8.2*
test_iterators_base64: borland-5.6.4* borland-5.8.2*
test_list_binary_archive: borland-5.6.4* borland-5.8.2*
test_list_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_list_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_list_ptrs_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_binary_archive: borland-5.6.4* borland-5.8.2*
test_map_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_map_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mi_binary_archive: borland-5.6.4* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_text_archive: borland-5.6.4* borland-5.8.2*
test_mi_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_text_warchive: borland-5.6.4* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_mi_xml_archive: borland-5.6.4* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_xml_warchive: borland-5.6.4* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_mult_archive_types: borland-5.6.4* borland-5.8.2*
test_mult_archive_types_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_binary_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_binary_archive: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_default_ctor_binary_archive_dll: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_default_ctor_text_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_binary_archive: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_intrusive_binary_archive_dll: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_intrusive_text_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_binary_archive: borland-5.6.4* borland-5.8.2*
test_nvp_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_text_archive: borland-5.6.4* borland-5.8.2*
test_nvp_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_text_warchive: borland-5.6.4* borland-5.8.2*
test_nvp_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_xml_archive: borland-5.6.4* borland-5.8.2*
test_nvp_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_xml_warchive: borland-5.6.4* borland-5.8.2*
test_nvp_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_object_binary_archive: borland-5.6.4* borland-5.8.2*
test_object_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_text_archive: borland-5.6.4* borland-5.8.2*
test_object_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_text_warchive: borland-5.6.4* borland-5.8.2*
test_object_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_object_xml_archive: borland-5.6.4* borland-5.8.2*
test_object_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_xml_warchive: borland-5.6.4* borland-5.8.2*
test_object_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_optional_binary_archive: borland-5.6.4* borland-5.8.2*
test_optional_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_text_archive: borland-5.6.4* borland-5.8.2*
test_optional_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_text_warchive: borland-5.6.4* borland-5.8.2*
test_optional_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_optional_xml_archive: borland-5.6.4* borland-5.8.2*
test_optional_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_xml_warchive: borland-5.6.4* borland-5.8.2*
test_optional_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_binary_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_warchive: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_warchive: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_binary_archive: borland-5.6.4* borland-5.8.2*
test_primitive_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_text_archive: borland-5.6.4* borland-5.8.2*
test_primitive_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_text_warchive: borland-5.6.4* borland-5.8.2*
test_primitive_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_xml_archive: borland-5.6.4* borland-5.8.2*
test_primitive_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_xml_warchive: borland-5.6.4* borland-5.8.2*
test_primitive_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_private_ctor: borland-5.6.4* borland-5.8.2*
test_private_ctor_dll: borland-5.6.4* borland-5.8.2*
test_recursion_binary_archive: borland-5.6.4* borland-5.8.2*
test_recursion_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_text_archive: borland-5.6.4* borland-5.8.2*
test_recursion_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_text_warchive: borland-5.6.4* borland-5.8.2*
test_recursion_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_xml_archive: borland-5.6.4* borland-5.8.2*
test_recursion_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_xml_warchive: borland-5.6.4* borland-5.8.2*
test_recursion_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_registered_binary_archive: borland-5.6.4* borland-5.8.2*
test_registered_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_text_archive: borland-5.6.4* borland-5.8.2*
test_registered_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_text_warchive: borland-5.6.4* borland-5.8.2*
test_registered_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_registered_xml_archive: borland-5.6.4* borland-5.8.2*
test_registered_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_xml_warchive: borland-5.6.4* borland-5.8.2*
test_registered_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_reset_object_address: borland-5.6.4* borland-5.8.2*
test_reset_object_address_dll: borland-5.6.4* borland-5.8.2*
test_set_binary_archive: borland-5.8.2*
test_set_binary_archive_dll: borland-5.8.2*
test_set_text_archive: borland-5.8.2* borland-5.8.2*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_set_text_warchive: borland-5.8.2* borland-5.8.2*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_set_xml_archive: borland-5.8.2* borland-5.8.2*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2*
test_shared_ptr_132_binary_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_text_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_smart_cast: borland-5.6.4* borland-5.8.2*
test_split_binary_archive: borland-5.6.4* borland-5.8.2*
test_split_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_text_archive: borland-5.6.4* borland-5.8.2*
test_split_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_text_warchive: borland-5.6.4* borland-5.8.2*
test_split_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_split_xml_archive: borland-5.6.4* borland-5.8.2*
test_split_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_xml_warchive: borland-5.6.4* borland-5.8.2*
test_split_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_static_warning: borland-5.6.4* borland-5.8.2*
test_tracking_binary_archive: borland-5.6.4* borland-5.8.2*
test_tracking_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_text_archive: borland-5.6.4* borland-5.8.2*
test_tracking_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_text_warchive: borland-5.6.4* borland-5.8.2*
test_tracking_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_xml_archive: borland-5.6.4* borland-5.8.2*
test_tracking_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_xml_warchive: borland-5.6.4* borland-5.8.2*
test_tracking_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_traits_pass: borland-5.6.4* borland-5.8.2*
test_unregistered_binary_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_text_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_text_warchive: borland-5.6.4* borland-5.8.2*
test_unregistered_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_warchive: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_utf8_codecvt: borland-5.6.4* borland-5.8.2*
test_valarray_binary_archive: borland-5.6.4* borland-5.8.2*
test_valarray_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_valarray_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_variant_binary_archive: borland-5.6.4*
test_variant_binary_archive_dll: borland-5.6.4*
test_variant_text_archive: borland-5.6.4*
test_variant_text_archive_dll: borland-5.6.4*
test_variant_text_warchive: borland-5.6.4*
test_variant_text_warchive_dll: borland-5.6.4*
test_variant_xml_archive: borland-5.6.4*
test_variant_xml_archive_dll: borland-5.6.4*
test_variant_xml_warchive: borland-5.6.4*
test_variant_xml_warchive_dll: borland-5.6.4*
test_vector_binary_archive: borland-5.6.4* borland-5.8.2*
test_vector_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_vector_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_void_cast: borland-5.6.4* borland-5.8.2*
test_void_cast_dll: borland-5.6.4* borland-5.8.2*
|signals|
dead_slot_test: borland-5.6.4* borland-5.8.2*
deletion_test: borland-5.6.4* borland-5.8.2*
ordering_test: borland-5.6.4* borland-5.8.2*
signal_n_test: borland-5.6.4* borland-5.8.2*
trackable_test: borland-5.6.4* borland-5.8.2*
|smart_ptr|
atomic_count_test: borland-5.6.4* borland-5.8.2*
get_deleter_test: borland-5.6.4* borland-5.8.2*
intrusive_ptr_test: borland-5.6.4* borland-5.8.2*
lw_mutex_test: borland-5.6.4* borland-5.8.2*
pointer_cast_test: borland-5.6.4* borland-5.8.2*
pointer_to_other_test: borland-5.6.4* borland-5.8.2*
shared_from_this_test: borland-5.6.4* borland-5.8.2*
shared_ptr_alias_test: borland-5.6.4* borland-5.8.2*
shared_ptr_alloc2_test: borland-5.6.4* borland-5.8.2*
shared_ptr_basic_test: borland-5.6.4* borland-5.8.2*
shared_ptr_rv_test: borland-5.6.4* borland-5.8.2*
shared_ptr_test: borland-5.6.4* borland-5.8.2*
smart_ptr_test: borland-5.6.4* borland-5.8.2*
sp_unary_addr_test: borland-5.6.4* borland-5.8.2*
weak_ptr_test: borland-5.6.4* borland-5.8.2*
|spirit|
custom_real_parser: hp_cxx-71_006_tru64 msvc-8.0
custom_real_parser_debug: hp_cxx-71_006_tru64 msvc-8.0
grammar_mt_tests: gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 msvc-8.0
mix_and_match_trees: sun-5.8
owi_mt_tests: gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 msvc-8.0
|static_assert|
static_assert_example_2: borland-5.6.4* borland-5.8.2*
static_assert_example_3: borland-5.6.4* borland-5.8.2*
|system|
error_code_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_user_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_user_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
header_only_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
initialization_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
system_error_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5
system_error_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5
|test|
boost_check_equal_str: sun-5.8
errors_handling_test: sun-5.8
fixed_mapping_test: sun-5.8
online_test: sun-5.8
parameterized_test_test: sun-5.8
result_report_test: sun-5.8
test_tools_test: sun-5.8
|thread|
test_barrier: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_barrier_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_condition: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_condition_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_lock_concept: borland-5.6.4* borland-5.8.2*
test_lock_concept_lib: borland-5.6.4* borland-5.8.2*
test_mutex: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_once: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_once_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_shared_mutex: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-8.0
test_shared_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-8.0
test_thread: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_thread_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_tss: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_xtime: borland-5.6.4* borland-5.8.2*
test_xtime_lib: borland-5.6.4* borland-5.8.2*
|timer|
timer_test: borland-5.6.4* borland-5.8.2*
|tokenizer|
examples: borland-5.6.4* borland-5.8.2*
simple_example_1: borland-5.6.4* borland-5.8.2*
simple_example_2: borland-5.6.4* borland-5.8.2*
simple_example_3: borland-5.6.4* borland-5.8.2*
simple_example_4: borland-5.6.4* borland-5.8.2*
simple_example_5: borland-5.6.4* borland-5.8.2*
|tr1|
std_test_array: borland-5.8.2*
std_test_array_tricky: borland-5.8.2*
std_test_bind: borland-5.6.4* borland-5.8.2*
std_test_bind_header: borland-5.6.4* borland-5.8.2*
std_test_complex_header: borland-5.6.4* borland-5.8.2*
std_test_function_header: borland-5.6.4* borland-5.8.2*
std_test_hash: borland-5.6.4* borland-5.8.2*
std_test_hash_header: borland-5.6.4* borland-5.8.2*
std_test_integral_const_header: borland-5.6.4* borland-5.8.2*
std_test_mem_fn: borland-5.8.2*
std_test_mem_fn_header: borland-5.6.4* borland-5.8.2*
std_test_mpl_header: borland-5.6.4* borland-5.8.2*
std_test_ref_header: borland-5.6.4* borland-5.8.2*
std_test_reference_wrapper: borland-5.6.4* borland-5.8.2*
std_test_regex: borland-5.8.2*
std_test_result_of_header: borland-5.6.4* borland-5.8.2*
std_test_shared_array_header: borland-5.6.4* borland-5.8.2*
std_test_shared_from_this_header: borland-5.6.4* borland-5.8.2*
std_test_shd_this_header: borland-5.6.4* borland-5.8.2*
std_test_tr1_include: borland-5.8.2*
std_test_tuple: borland-5.8.2*
std_test_tuple_tricky: sun-5.8
std_test_type_traits_header: borland-5.6.4* borland-5.8.2*
std_test_weak_ptr_header: borland-5.6.4* borland-5.8.2*
test_algorithm_std_header: borland-5.6.4* borland-5.8.2*
test_array: borland-5.8.2*
test_array_tricky: borland-5.8.2*
test_bind: borland-5.6.4* borland-5.8.2*
test_bind_header: borland-5.6.4* borland-5.8.2*
test_bitset_std_header: borland-5.6.4* borland-5.8.2*
test_complex_header: borland-5.6.4* borland-5.8.2*
test_complex_std_header: borland-5.6.4* borland-5.8.2*
test_deque_std_header: borland-5.6.4* borland-5.8.2*
test_exception_std_header: borland-5.6.4* borland-5.8.2*
test_fstream_std_header: borland-5.6.4* borland-5.8.2*
test_function_header: borland-5.6.4* borland-5.8.2*
test_functional_std_header: borland-5.6.4* borland-5.8.2*
test_hash: borland-5.6.4* borland-5.8.2*
test_hash_header: borland-5.6.4* borland-5.8.2*
test_integral_const_header: borland-5.6.4* borland-5.8.2*
test_iomanip_std_header: borland-5.6.4* borland-5.8.2*
test_ios_std_header: borland-5.6.4* borland-5.8.2*
test_iostream_std_header: borland-5.6.4* borland-5.8.2*
test_istream_std_header: borland-5.6.4* borland-5.8.2*
test_iterator_std_header: borland-5.6.4* borland-5.8.2*
test_limits_std_header: borland-5.6.4* borland-5.8.2*
test_list_std_header: borland-5.6.4* borland-5.8.2*
test_locale_std_header: borland-5.6.4* borland-5.8.2*
test_map_std_header: borland-5.6.4* borland-5.8.2*
test_mem_fn: borland-5.8.2*
test_mem_fn_header: borland-5.6.4* borland-5.8.2*
test_memory_std_header: borland-5.6.4* borland-5.8.2*
test_mpl_header: borland-5.6.4* borland-5.8.2*
test_new_std_header: borland-5.6.4* borland-5.8.2*
test_numeric_std_header: borland-5.6.4* borland-5.8.2*
test_ostream_std_header: borland-5.6.4* borland-5.8.2*
test_queue_std_header: borland-5.6.4* borland-5.8.2*
test_ref_header: borland-5.6.4* borland-5.8.2*
test_reference_wrapper: borland-5.6.4* borland-5.8.2*
test_regex: borland-5.8.2*
test_result_of_header: borland-5.6.4* borland-5.8.2*
test_set_std_header: borland-5.6.4* borland-5.8.2*
test_shared_array_header: borland-5.6.4* borland-5.8.2*
test_shared_from_this_header: borland-5.6.4* borland-5.8.2*
test_shd_this_header: borland-5.6.4* borland-5.8.2*
test_sstream_std_header: borland-5.6.4* borland-5.8.2*
test_stack_std_header: borland-5.6.4* borland-5.8.2*
test_stdexcept_std_header: borland-5.6.4* borland-5.8.2*
test_streambuf_std_header: borland-5.6.4* borland-5.8.2*
test_string_std_header: borland-5.6.4* borland-5.8.2*
test_strstream_std_header: borland-5.6.4* borland-5.8.2*
test_tr1_include: borland-5.8.2*
test_tuple: borland-5.8.2*
test_tuple_tricky: sun-5.8
test_type_traits_header: borland-5.6.4* borland-5.8.2*
test_typeinfo_std_header: borland-5.6.4* borland-5.8.2*
test_utility_std_header: borland-5.6.4* borland-5.8.2*
test_valarray_std_header: borland-5.6.4* borland-5.8.2*
test_vector_std_header: borland-5.6.4* borland-5.8.2*
test_weak_ptr_header: borland-5.6.4* borland-5.8.2*
tr1_add_const_test: borland-5.8.2*
tr1_add_cv_test: borland-5.8.2*
tr1_add_pointer_test: borland-5.8.2*
tr1_add_reference_test: borland-5.8.2*
tr1_add_volatile_test: borland-5.8.2*
tr1_aligned_storage_test: borland-5.8.2*
tr1_alignment_of_test: borland-5.8.2*
tr1_has_nothrow_assign_test: borland-5.8.2*
tr1_has_nothrow_constr_test: borland-5.8.2*
tr1_has_nothrow_copy_test: borland-5.8.2*
tr1_has_tr1_array_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_bind_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_cx_over_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_cx_trig_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_function_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_hash_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_mem_fn_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_random_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_ref_wrap_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_regex_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_result_of_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_shared_ptr_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_tt_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_tuple_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_un_map_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_un_set_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_utility_pass: borland-5.6.4* borland-5.8.2*
tr1_has_trivial_assign_test: borland-5.8.2*
tr1_has_trivial_constr_test: borland-5.8.2*
tr1_has_trivial_copy_test: borland-5.8.2*
tr1_has_trivial_destr_test: borland-5.8.2*
tr1_has_virtual_destr_test: borland-5.8.2*
tr1_is_arithmetic_test: borland-5.8.2*
tr1_is_array_test: borland-5.8.2*
tr1_is_class_test: borland-5.8.2*
tr1_is_compound_test: borland-5.8.2*
tr1_is_const_test: borland-5.8.2*
tr1_is_empty_test: borland-5.8.2*
tr1_is_enum_test: borland-5.8.2*
tr1_is_floating_point_test: borland-5.8.2*
tr1_is_function_test: borland-5.8.2*
tr1_is_fundamental_test: borland-5.8.2*
tr1_is_integral_test: borland-5.8.2*
tr1_is_member_func_test: borland-5.8.2*
tr1_is_member_obj_test: borland-5.8.2*
tr1_is_member_pointer_test: borland-5.8.2*
tr1_is_object_test: borland-5.8.2*
tr1_is_pod_test: borland-5.8.2*
tr1_is_pointer_test: borland-5.8.2*
tr1_is_polymorphic_test: borland-5.8.2*
tr1_is_reference_test: borland-5.8.2*
tr1_is_same_test: borland-5.8.2*
tr1_is_scalar_test: borland-5.8.2*
tr1_is_signed_test: borland-5.8.2* borland-5.8.2*
tr1_is_union_test: borland-5.8.2*
tr1_is_unsigned_test: borland-5.8.2* borland-5.8.2*
tr1_is_void_test: borland-5.8.2*
tr1_is_volatile_test: borland-5.8.2*
tr1_remove_cv_test: borland-5.8.2*
tr1_remove_reference_test: borland-5.8.2*
tr1_tky_abstract_type_test: borland-5.8.2*
|tuple|
another_tuple_test_bench: borland-5.6.4* borland-5.8.2*
io_test: borland-5.6.4* borland-5.8.2*
tuple_test_bench: borland-5.6.4* borland-5.8.2*
|type_traits|
add_const_test: borland-5.6.4* borland-5.8.2*
add_cv_test: borland-5.6.4* borland-5.8.2*
add_pointer_test: borland-5.6.4* borland-5.8.2*
add_reference_test: borland-5.6.4* borland-5.8.2*
add_volatile_test: borland-5.6.4* borland-5.8.2*
aligned_storage_test: borland-5.6.4* borland-5.8.2*
alignment_of_test: borland-5.6.4* borland-5.8.2*
function_traits_test: borland-5.6.4* borland-5.8.2*
has_nothrow_assign_test: borland-5.6.4* borland-5.8.2*
has_nothrow_constr_test: borland-5.6.4* borland-5.8.2*
has_nothrow_copy_test: borland-5.6.4* borland-5.8.2*
has_trivial_assign_test: borland-5.6.4* borland-5.8.2*
has_trivial_constr_test: borland-5.6.4* borland-5.8.2*
has_trivial_copy_test: borland-5.6.4* borland-5.8.2*
has_trivial_destructor_test: borland-5.6.4* borland-5.8.2*
has_virtual_destructor_test: borland-5.6.4* borland-5.8.2*
is_arithmetic_test: borland-5.6.4* borland-5.8.2*
is_array_test: borland-5.6.4* borland-5.8.2*
is_class_test: borland-5.6.4* borland-5.8.2*
is_complex_test: borland-5.6.4* borland-5.8.2*
is_compound_test: borland-5.6.4* borland-5.8.2*
is_const_test: borland-5.6.4* borland-5.8.2*
is_empty_test: borland-5.6.4* borland-5.8.2*
is_enum_test: borland-5.6.4* borland-5.8.2*
is_float_test: borland-5.6.4* borland-5.8.2*
is_floating_point_test: borland-5.6.4* borland-5.8.2*
is_function_test: borland-5.6.4* borland-5.8.2*
is_fundamental_test: borland-5.6.4* borland-5.8.2*
is_integral_test: borland-5.6.4* borland-5.8.2*
is_member_func_test: borland-5.6.4* borland-5.8.2*
is_member_obj_test: borland-5.6.4* borland-5.8.2*
is_member_pointer_test: borland-5.6.4* borland-5.8.2*
is_object_test: borland-5.6.4* borland-5.8.2*
is_pod_test: borland-5.6.4* borland-5.8.2*
is_pointer_test: borland-5.6.4* borland-5.8.2*
is_polymorphic_test: borland-5.6.4* borland-5.8.2*
is_reference_test: borland-5.6.4* borland-5.8.2*
is_same_test: borland-5.6.4* borland-5.8.2*
is_scalar_test: borland-5.6.4* borland-5.8.2*
is_signed_test: borland-5.6.4* borland-5.8.2*
is_stateless_test: borland-5.6.4* borland-5.8.2*
is_union_test: borland-5.6.4* borland-5.8.2*
is_unsigned_test: borland-5.6.4* borland-5.8.2*
is_void_test: borland-5.6.4* borland-5.8.2*
is_volatile_test: borland-5.6.4* borland-5.8.2*
remove_cv_test: borland-5.6.4* borland-5.8.2*
remove_reference_test: borland-5.6.4* borland-5.8.2*
tricky_abstract_type_test: borland-5.6.4* borland-5.8.2*
type_with_alignment_test: borland-5.6.4* borland-5.8.2*
udt_specialisations: borland-5.6.4* borland-5.8.2*
|typeof|
data_member_emulation: borland-5.8.2*
experimental_1_emulation: borland-5.8.2* sun-5.8
experimental_2_emulation: borland-5.8.2* sun-5.8
experimental_3_emulation: borland-5.8.2* sun-5.8
experimental_4_emulation: borland-5.8.2* sun-5.8
function_ptr_emulation: borland-5.8.2*
function_ptr_from_tpl_emulation: sun-5.8
function_ref_emulation: borland-5.8.2*
member_function_emulation: borland-5.8.2*
noncopyable_emulation: borland-5.8.2*
odr_emulation: borland-5.8.2*
odr_no_uns: borland-5.8.2*
std_emulation: borland-5.8.2*
template_dependent_emulation: borland-5.8.2*
template_enum_emulation: borland-5.8.2*
template_int_emulation: borland-5.8.2*
template_multiword_emulation: borland-5.8.2*
template_tpl_emulation: borland-5.8.2*
template_type_emulation: borland-5.8.2*
type_emulation: borland-5.8.2*
|utility|
addressof_test: borland-5.6.4* borland-5.8.2*
assert_test: borland-5.6.4* borland-5.8.2*
base_from_member_test: borland-5.6.4* borland-5.8.2*
binary_search_test: borland-5.6.4* borland-5.8.2*
call_traits_test: borland-5.8.2*
compressed_pair_test: borland-5.6.4* borland-5.8.2*
current_function_test: borland-5.6.4* borland-5.8.2*
iterators_test: borland-5.6.4* borland-5.8.2*
next_prior_test: borland-5.6.4* borland-5.8.2*
operators_test: borland-5.6.4* borland-5.8.2*
ref_ct_test: borland-5.6.4* borland-5.8.2*
ref_test: borland-5.6.4* borland-5.8.2*
result_of_test: sun-5.8
shared_iterator_test: borland-5.6.4* borland-5.8.2*
value_init_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|variant|
variant_comparison_test: borland-5.6.4* borland-5.8.2*
variant_reference_test: borland-5.6.4* borland-5.8.2*
variant_test2: borland-5.6.4* borland-5.8.2*
variant_test3: borland-5.6.4* borland-5.8.2*
variant_test4: borland-5.6.4* borland-5.8.2*
variant_test6: borland-5.6.4* borland-5.8.2*
variant_test7: borland-5.6.4* borland-5.8.2*
variant_test8: borland-5.6.4* borland-5.8.2*
|wave|
testwave: gcc-mingw-3.4.5
|xpressive|
c_traits: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
misc1: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
misc2: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
multiple_defs: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
regress: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test1: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test10: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test10u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test11: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test11u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test1u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test2: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test2u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test3: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test3u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test4: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test4u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test5: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test5u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test6: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test6u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test7: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test7u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test8: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test8u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test9: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test9u: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_actions: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_assert: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_basic_regex: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_cycles: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_dynamic: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_dynamic_grammar: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_non_char: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_regex_compiler: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_regex_primitives: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_static: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
test_symbols: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
1
0
Gennadiy,
Boost.Test is failing on Darwin with: http://tinyurl.com/37983b
I'm attaching a message from the Boost-testing list that explains a
workaround. I'm guessing that maybe sigemptyset is a macro on this
platform, and that conflicts with the :: qualifier?
Thanks, John.
4
3
[Note: This message received no response when posted to comp.lib.boost.user,
so I'm reposting it here.]
Hi,
I'm testing with BOOST_TYPEOF_LIMIT_SIZE greater than 50 and native typeof
disabled. I get a "class template has already been defined" error on
"template<class V, class T> struct push_back" whenever
BOOST_TYPEOF_LIMIT_SIZE is *not* a multiple of 50.
This is because push_back is defined in both "typeof/vector.hpp" and, for
example, "typeof/vector50.hpp". My fix is to change the push_back
definition in "typeof/vector.hpp" to:
# if BOOST_TYPEOF_LIMIT_SIZE < 50
template<class V, class T> struct push_back {
typedef V type;
};
# endif
Can someone please confirm that this is the correct fix? A tiny program
demonstrating the problem is listed below.
Thanks,
Dave Jenkins
#define BOOST_TYPEOF_COMPLIANT
#define BOOST_TYPEOF_LIMIT_SIZE 51
#include <boost/typeof/typeof.hpp>
int main(){
return 0;
}
2
1
* the docs claim there's a --no_result_code=yes/no argument, but in
fact, it's --result_code=no/yes
* If http://bitten.edgewall.org/wiki/BoostTest ever worked, then the
Boost.Test XML format must've changed at some point. The XSLT appears to
be looking for a "result" attribute on the TestCase. As you can see
from my notes at the bottom, that isn't present in my output.
--
Dave Abrahams
Boost Consulting
http://www.boost-consulting.com
2
4
Hi,
We need some help on getting fusion to compile, if possible,
on sun-5.8. The active developers (Dan, Tobias and I), do not
have access to the compiler at the moment. I'm not even sure
if fusion can be tweaked to build on the compiler, but if
anyone is interested to try, we'd really appreciate it.
TIA! :-)
Regards,
--
Joel de Guzman
http://www.boost-consulting.com
http://spirit.sf.net
1
0
Hi !
The commit:
> URL: http://svn.boost.org/trac/boost/changeset/40531
>
> Log:
> Added test of real_parser specialized for a custom data type.
has a small typo in spirits test Jamfile.v2 and brakes the tests.
Please find a patch (spirit.diff) attached.
The newly added test fails on Kubuntu Feisty with attached failure.
Yours,
Jürgen
--
* Dipl.-Math. Jürgen Hunold ! Ingenieurgesellschaft für
* voice: ++49 511 262926 57 ! Verkehrs- und Eisenbahnwesen mbH
* fax : ++49 511 262926 99 ! Lister Straße 15
* juergen.hunold(a)ivembh.de ! www.ivembh.de
*
* Geschäftsführer: ! Sitz des Unternehmens: Hannover
* Prof. Dr.-Ing. Thomas Siefer ! Amtsgericht Hannover, HRB 56965
* PD Dr.-Ing. Alfons Radtke !
2
2
Boost regression test failures
Report time: 2007-10-28T10:08:47Z
This report lists all regression test failures on release platforms.
Detailed report:
http://boost.org/regression/trunk/developer/issues.html
The following platforms have a large number of failures:
borland-5.6.4
borland-5.8.2
3421 failures in 65 libraries (289 are from non-broken platforms)
algorithm/minmax (0 of 4 failures are from non-broken platforms)
algorithm/string (0 of 14 failures are from non-broken platforms)
any (0 of 2 failures are from non-broken platforms)
array (0 of 10 failures are from non-broken platforms)
asio (2)
assign (0 of 16 failures are from non-broken platforms)
bimap (27 of 163 failures are from non-broken platforms)
bind (0 of 46 failures are from non-broken platforms)
circular_buffer (0 of 8 failures are from non-broken platforms)
concept_check (6 of 20 failures are from non-broken platforms)
config (0 of 10 failures are from non-broken platforms)
conversion (7 of 23 failures are from non-broken platforms)
crc (0 of 2 failures are from non-broken platforms)
date_time (0 of 107 failures are from non-broken platforms)
disjoint_sets (0 of 2 failures are from non-broken platforms)
dynamic_bitset (2 of 9 failures are from non-broken platforms)
filesystem (3 of 27 failures are from non-broken platforms)
foreach (0 of 24 failures are from non-broken platforms)
format (0 of 8 failures are from non-broken platforms)
function (0 of 22 failures are from non-broken platforms)
functional (0 of 2 failures are from non-broken platforms)
functional/hash (0 of 54 failures are from non-broken platforms)
fusion (55 of 507 failures are from non-broken platforms)
gil (4 of 8 failures are from non-broken platforms)
graph (11)
integer (0 of 6 failures are from non-broken platforms)
interprocess (2)
io (0 of 2 failures are from non-broken platforms)
iostreams (1 of 57 failures are from non-broken platforms)
iterator (0 of 32 failures are from non-broken platforms)
lambda (1)
logic (0 of 6 failures are from non-broken platforms)
math (92 of 297 failures are from non-broken platforms)
mpl (1 of 157 failures are from non-broken platforms)
numeric/conversion (0 of 2 failures are from non-broken platforms)
numeric/interval (0 of 12 failures are from non-broken platforms)
optional (3 of 13 failures are from non-broken platforms)
parameter (0 of 27 failures are from non-broken platforms)
pool (0 of 2 failures are from non-broken platforms)
preprocessor (0 of 28 failures are from non-broken platforms)
program_options (0 of 28 failures are from non-broken platforms)
property_map (0 of 4 failures are from non-broken platforms)
ptr_container (3)
python (5)
random (0 of 2 failures are from non-broken platforms)
range (8 of 30 failures are from non-broken platforms)
rational (0 of 6 failures are from non-broken platforms)
regex (0 of 73 failures are from non-broken platforms)
serialization (20 of 953 failures are from non-broken platforms)
signals (0 of 10 failures are from non-broken platforms)
smart_ptr (0 of 30 failures are from non-broken platforms)
spirit (9)
static_assert (0 of 4 failures are from non-broken platforms)
system (2 of 34 failures are from non-broken platforms)
test (7)
thread (3 of 55 failures are from non-broken platforms)
timer (0 of 2 failures are from non-broken platforms)
tokenizer (0 of 12 failures are from non-broken platforms)
tr1 (2 of 226 failures are from non-broken platforms)
tuple (0 of 6 failures are from non-broken platforms)
type_traits (0 of 100 failures are from non-broken platforms)
typeof (11 of 30 failures are from non-broken platforms)
utility (1 of 30 failures are from non-broken platforms)
variant (0 of 16 failures are from non-broken platforms)
wave (1)
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/minmax|
minmax: borland-5.6.4* borland-5.8.2*
minmax_element: borland-5.6.4* borland-5.8.2*
|algorithm/string|
conv: borland-5.6.4* borland-5.8.2*
find: borland-5.6.4* borland-5.8.2*
join: borland-5.6.4* borland-5.8.2*
predicate: borland-5.6.4* borland-5.8.2*
replace: borland-5.6.4* borland-5.8.2*
split: borland-5.6.4* borland-5.8.2*
trim: borland-5.6.4* borland-5.8.2*
|any|
any_test: borland-5.6.4* borland-5.8.2*
|array|
array0: borland-5.6.4* borland-5.8.2*
array1: borland-5.6.4* borland-5.8.2*
array2: borland-5.6.4* borland-5.8.2*
array3: borland-5.8.2*
array4: borland-5.8.2*
array5: borland-5.6.4* borland-5.8.2*
|asio|
ip_multicast: acc
ip_multicast_select: acc
|assign|
basic: borland-5.6.4* borland-5.8.2*
email_example: borland-5.6.4* borland-5.8.2*
list_inserter: borland-5.6.4* borland-5.8.2*
list_of_workaround: borland-5.6.4* borland-5.8.2*
my_vector_example: borland-5.6.4* borland-5.8.2*
static_list_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
std: borland-5.6.4* borland-5.8.2*
|bimap|
assign: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
foreach: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
lambda: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
property_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
serialization: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_assign: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_convenience_header: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_extra: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_info: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_lambda: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_list_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_modify: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_multiset_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_mutable: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_operator_bracket: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_ordered: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_project: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_property_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_sequenced: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_serialization: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_set_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_unconstrained: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_unordered: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bimap_unordered_multiset_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_unordered_set_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_vector_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutant: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutant_relation: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_structured_pair: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_tagged: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
typeof: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
xpressive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
|bind|
bind_const_test: borland-5.6.4* borland-5.8.2*
bind_cv_test: borland-5.6.4* borland-5.8.2*
bind_dm2_test: borland-5.6.4* borland-5.8.2*
bind_dm_test: borland-5.6.4* borland-5.8.2*
bind_eq_test: borland-5.6.4* borland-5.8.2*
bind_function_test: borland-5.6.4* borland-5.8.2*
bind_lookup_problem_test: borland-5.6.4* borland-5.8.2*
bind_not_test: borland-5.6.4* borland-5.8.2*
bind_placeholder_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
bind_rel_test: borland-5.6.4* borland-5.8.2*
bind_rv_sp_test: borland-5.6.4* borland-5.8.2*
bind_rvalue_test: borland-5.6.4* borland-5.8.2*
bind_stateful_test: borland-5.6.4* borland-5.8.2*
bind_test: borland-5.6.4* borland-5.8.2*
bind_unary_addr: borland-5.6.4* borland-5.8.2*
bind_visit_test: borland-5.6.4* borland-5.8.2*
mem_fn_derived_test: borland-5.6.4* borland-5.8.2*
mem_fn_dm_test: borland-5.6.4* borland-5.8.2*
mem_fn_eq_test: borland-5.6.4* borland-5.8.2*
mem_fn_rv_test: borland-5.6.4* borland-5.8.2*
mem_fn_test: borland-5.6.4* borland-5.8.2*
mem_fn_void_test: borland-5.6.4* borland-5.8.2*
|circular_buffer|
base_test: borland-5.6.4* borland-5.8.2*
bounded_buffer_comparison: borland-5.6.4* borland-5.8.2*
soft_iterator_invalidation: borland-5.6.4* borland-5.8.2*
space_optimized_test: borland-5.6.4* borland-5.8.2*
|concept_check|
class_concept_check_test: borland-5.6.4* borland-5.8.2*
class_concept_fail_expected: sun-5.8
concept_check_test: borland-5.6.4* borland-5.8.2*
old_concept_class_fail: borland-5.6.4* borland-5.8.2* sun-5.8
old_concept_function_fail: borland-5.6.4* borland-5.8.2* sun-5.8
old_concept_pass: borland-5.6.4* borland-5.8.2*
stl_concept_check: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
usage_fail: sun-5.8
where: borland-5.6.4* borland-5.8.2*
where_fail: sun-5.8
|config|
abi_test: borland-5.6.4* borland-5.8.2*
config_info: borland-5.6.4* borland-5.8.2*
config_link_test: borland-5.6.4* borland-5.8.2*
config_test: borland-5.6.4* borland-5.8.2*
math_info: borland-5.6.4* borland-5.8.2*
|conversion|
cast_test: borland-5.6.4* borland-5.8.2*
implicit_cast: borland-5.6.4* borland-5.8.2*
lexical_cast_loopback_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 msvc-7.1 msvc-8.0 msvc-8.0 sun-5.8
lexical_cast_noncopyable_test: borland-5.6.4* borland-5.8.2*
lexical_cast_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
numeric_cast_test: borland-5.6.4* borland-5.8.2*
|crc|
crc_test: borland-5.6.4* borland-5.8.2*
|date_time|
testc_local_adjustor: borland-5.6.4* borland-5.8.2*
testclock: borland-5.6.4* borland-5.8.2*
testconstrained_value: borland-5.6.4* borland-5.8.2*
testcustom_time_zone: borland-5.8.2*
testdate: borland-5.6.4* borland-5.8.2*
testdate_dll: borland-5.6.4* borland-5.8.2*
testdate_duration: borland-5.6.4* borland-5.8.2*
testdate_duration_dll: borland-5.6.4* borland-5.8.2*
testdate_input_facet: borland-5.6.4* borland-5.8.2*
testdate_input_facet_dll: borland-5.6.4* borland-5.8.2*
testdate_iterator: borland-5.6.4* borland-5.8.2*
testdate_iterator_dll: borland-5.6.4* borland-5.8.2*
testdst_rules: borland-5.6.4* borland-5.8.2*
testdst_transition_day_rule: borland-5.6.4* borland-5.8.2*
testduration: borland-5.6.4* borland-5.8.2*
testfiletime_functions: borland-5.6.4* borland-5.8.2*
testformatters: borland-5.6.4* borland-5.8.2*
testformatters_dll: borland-5.6.4* borland-5.8.2*
testgenerators: borland-5.6.4* borland-5.8.2*
testgenerators_dll: borland-5.6.4* borland-5.8.2*
testgeneric_period: borland-5.6.4* borland-5.8.2*
testgreg_cal: borland-5.6.4* borland-5.8.2*
testgreg_cal_dll: borland-5.6.4* borland-5.8.2*
testgreg_day: borland-5.6.4* borland-5.8.2*
testgreg_day_dll: borland-5.6.4* borland-5.8.2*
testgreg_duration_operators: borland-5.6.4* borland-5.8.2*
testgreg_durations: borland-5.6.4* borland-5.8.2*
testgreg_durations_dll: borland-5.6.4* borland-5.8.2*
testgreg_month: borland-5.6.4* borland-5.8.2*
testgreg_month_dll: borland-5.6.4* borland-5.8.2*
testgreg_serialize: borland-5.6.4* borland-5.8.2*
testgreg_serialize_dll: borland-5.6.4* borland-5.8.2*
testgreg_serialize_xml: borland-5.6.4* borland-5.8.2*
testgreg_year: borland-5.6.4* borland-5.8.2*
testgreg_year_dll: borland-5.6.4* borland-5.8.2*
testgregorian_calendar: borland-5.6.4* borland-5.8.2*
testint_adapter: borland-5.6.4* borland-5.8.2*
testiterator: borland-5.6.4* borland-5.8.2*
testlocal_adjustor: borland-5.6.4* borland-5.8.2*
testparse_time: borland-5.6.4* borland-5.8.2*
testperiod: borland-5.6.4* borland-5.8.2*
testperiod_dll: borland-5.6.4* borland-5.8.2*
testposix_time_zone: borland-5.8.2*
testtime: borland-5.6.4* borland-5.8.2*
testtime_formatters: borland-5.6.4* borland-5.8.2*
testtime_period: borland-5.6.4* borland-5.8.2*
testtime_resolution_traits: borland-5.6.4* borland-5.8.2*
testtime_serialize: borland-5.6.4* borland-5.8.2*
testtime_serialize_std_config: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml_std_config: borland-5.6.4* borland-5.8.2*
testtz_database: borland-5.8.2*
testwcustom_time_zone: borland-5.6.4* borland-5.8.2*
testwposix_time_zone: borland-5.6.4* borland-5.8.2*
testwrapping_int: borland-5.6.4* borland-5.8.2*
|disjoint_sets|
disjoint_set_test: borland-5.6.4* borland-5.8.2*
|dynamic_bitset|
dyn_bitset_unit_tests1: borland-5.6.4* borland-5.8.2*
dyn_bitset_unit_tests2: borland-5.6.4*
dyn_bitset_unit_tests3: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
dyn_bitset_unit_tests4: borland-5.6.4* borland-5.8.2* sun-5.8
|filesystem|
convenience_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
fstream_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
large_file_support_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
operations_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5 msvc-7.1
operations_test_dll: msvc-8.0
path_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
simple_ls: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|foreach|
array_byref: borland-5.6.4* borland-5.8.2*
array_byval: borland-5.6.4* borland-5.8.2*
call_once: borland-5.6.4* borland-5.8.2*
cstr_byref: borland-5.6.4* borland-5.8.2*
cstr_byval: borland-5.6.4* borland-5.8.2*
dependent_type: borland-5.6.4* borland-5.8.2*
noncopyable: borland-5.6.4* borland-5.8.2*
pair_byref: borland-5.6.4* borland-5.8.2*
pair_byval: borland-5.6.4* borland-5.8.2*
stl_byref: borland-5.6.4* borland-5.8.2*
stl_byval: borland-5.6.4* borland-5.8.2*
user_defined: borland-5.6.4* borland-5.8.2*
|format|
format_test1: borland-5.6.4* borland-5.8.2*
format_test2: borland-5.6.4* borland-5.8.2*
format_test3: borland-5.6.4* borland-5.8.2*
format_test_wstring: borland-5.6.4* borland-5.8.2*
|function|
allocator_test: borland-5.6.4* borland-5.8.2*
contains2_test: borland-5.6.4* borland-5.8.2*
contains_test: borland-5.6.4* borland-5.8.2*
function_30: borland-5.6.4* borland-5.8.2*
function_arith_portable: borland-5.6.4* borland-5.8.2*
function_n_test: borland-5.6.4* borland-5.8.2*
function_ref_portable: borland-5.6.4* borland-5.8.2*
mem_fun_portable: borland-5.6.4* borland-5.8.2*
stateless_test: borland-5.6.4* borland-5.8.2*
std_bind_portable: borland-5.6.4* borland-5.8.2*
sum_avg_portable: borland-5.6.4* borland-5.8.2*
|functional|
function_test: borland-5.6.4* borland-5.8.2*
|functional/hash|
books: borland-5.6.4* borland-5.8.2*
container_fwd_test: borland-5.6.4* borland-5.8.2*
hash_built_in_array_test: borland-5.6.4* borland-5.8.2*
hash_complex_test: borland-5.6.4* borland-5.8.2*
hash_custom_test: borland-5.6.4* borland-5.8.2*
hash_deprecated_headers: borland-5.6.4* borland-5.8.2*
hash_deque_test: borland-5.6.4* borland-5.8.2*
hash_float_test: borland-5.6.4* borland-5.8.2*
hash_friend_test: borland-5.6.4* borland-5.8.2*
hash_function_pointer_test: borland-5.6.4* borland-5.8.2*
hash_fwd_test_1: borland-5.6.4* borland-5.8.2*
hash_fwd_test_2: borland-5.6.4* borland-5.8.2*
hash_list_test: borland-5.6.4* borland-5.8.2*
hash_long_double_test: borland-5.6.4* borland-5.8.2*
hash_map_test: borland-5.6.4* borland-5.8.2*
hash_no_ext_macro_1: borland-5.6.4* borland-5.8.2*
hash_no_ext_macro_2: borland-5.6.4* borland-5.8.2*
hash_number_test: borland-5.6.4* borland-5.8.2*
hash_pointer_test: borland-5.6.4* borland-5.8.2*
hash_range_test: borland-5.6.4* borland-5.8.2*
hash_set_test: borland-5.6.4* borland-5.8.2*
hash_string_test: borland-5.6.4* borland-5.8.2*
hash_value_array_test: borland-5.6.4* borland-5.8.2*
hash_vector_test: borland-5.6.4* borland-5.8.2*
link_ext_test: borland-5.6.4* borland-5.8.2*
link_test: borland-5.6.4* borland-5.8.2*
portable: borland-5.6.4* borland-5.8.2*
|fusion|
adapt_assoc_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
adapt_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
all: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
any: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
array: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_list: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
as_set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
back_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
boost_tuple: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
clear: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
cons: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
count: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
count_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deduce_sequence: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
erase: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
erase_key: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
filter: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
filter_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
filter_view: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
find: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
find_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fold: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
for_each: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
front_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fused: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
insert: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
insert_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
invoke: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
invoke_function_object: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
invoke_procedure: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
io: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
join: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
joint_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_list: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
map_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
none: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
pop_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
pop_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
push_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
push_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
remove: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
remove_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
repetitive_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
replace: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
replace_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
reverse: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
reverse_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
single_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
std_pair: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
swap: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
transform: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
transform_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_element: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
tuple_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
unfused_typed: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
variant: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
vector_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_n: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
vector_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
zip_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
zip_view2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
zip_view_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
|gil|
main: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 sun-5.8
|graph|
all_planar_input_files_test: msvc-7.1
cycle_ratio_tests: msvc-8.0
graphml_test: msvc-8.0
graphviz_test: msvc-8.0
kolmogorov_max_flow_test: acc hp_cxx-71_006_tru64
max_flow_test: acc hp_cxx-71_006_tru64
parallel_edges_loops_test: msvc-7.1
transitive_closure_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
|integer|
cstdint_test: borland-5.6.4* borland-5.8.2*
integer_test: borland-5.6.4* borland-5.8.2*
integer_traits_test: borland-5.6.4* borland-5.8.2*
|interprocess|
deque_test: hp_cxx-71_006_tru64
node_pool_test: hp_cxx-71_006_tru64
|io|
ios_state_test: borland-5.6.4* borland-5.8.2*
|iostreams|
array_test: borland-5.6.4* borland-5.8.2*
auto_close_test: borland-5.6.4* borland-5.8.2*
buffer_size_test: borland-5.6.4* borland-5.8.2*
code_converter_test: borland-5.6.4* borland-5.8.2* msvc-7.1
component_access_test: borland-5.6.4* borland-5.8.2*
compose_test: borland-5.8.2*
copy_test: borland-5.6.4* borland-5.8.2*
counter_test: borland-5.6.4* borland-5.8.2*
direct_adapter_test: borland-5.6.4* borland-5.8.2*
example_test: borland-5.6.4* borland-5.8.2*
file_descriptor_test: borland-5.6.4* borland-5.8.2*
file_test: borland-5.6.4* borland-5.8.2*
filtering_stream_test: borland-5.6.4* borland-5.8.2*
flush_test: borland-5.6.4* borland-5.8.2*
invert_test: borland-5.6.4* borland-5.8.2*
line_filter_test: borland-5.6.4* borland-5.8.2*
mapped_file_test: borland-5.6.4* borland-5.8.2*
newline_test: borland-5.6.4* borland-5.8.2*
null_test: borland-5.6.4* borland-5.8.2*
pipeline_test: borland-5.6.4* borland-5.8.2*
positioning_test: borland-5.6.4* borland-5.8.2*
regex_filter_test: borland-5.6.4* borland-5.8.2*
restrict_test: borland-5.6.4* borland-5.8.2*
seekable_file_test: borland-5.8.2*
seekable_filter_test: borland-5.6.4* borland-5.8.2*
stdio_filter_test: borland-5.6.4* borland-5.8.2*
symmetric_filter_test: borland-5.6.4* borland-5.8.2*
tee_test: borland-5.6.4* borland-5.8.2*
wide_stream_test: borland-5.6.4* borland-5.8.2*
|iterator|
concept_tests: borland-5.6.4* borland-5.8.2*
counting_iterator_test: borland-5.6.4* borland-5.8.2*
filter_iterator_test: borland-5.6.4* borland-5.8.2*
indirect_iterator_test: borland-5.6.4* borland-5.8.2*
interoperable: borland-5.6.4* borland-5.8.2*
is_lvalue_iterator: borland-5.6.4* borland-5.8.2*
is_readable_iterator: borland-5.6.4* borland-5.8.2*
iterator_adaptor_cc: borland-5.6.4* borland-5.8.2*
iterator_adaptor_test: borland-5.6.4* borland-5.8.2*
iterator_archetype_cc: borland-5.6.4* borland-5.8.2*
iterator_facade: borland-5.6.4* borland-5.8.2*
iterator_traits_test: borland-5.6.4* borland-5.8.2*
permutation_iterator_test: borland-5.6.4* borland-5.8.2*
reverse_iterator_test: borland-5.6.4* borland-5.8.2*
transform_iterator_test: borland-5.6.4* borland-5.8.2*
unit_tests: borland-5.6.4* borland-5.8.2*
|lambda|
operator_tests_simple: msvc-7.1
|logic|
tribool_io_test: borland-5.6.4* borland-5.8.2*
tribool_rename_test: borland-5.6.4* borland-5.8.2*
tribool_test: borland-5.6.4* borland-5.8.2*
|math|
common_factor_test: borland-5.8.2* sun-5.8
dist_bernoulli_incl_test: borland-5.6.4* borland-5.8.2*
dist_beta_incl_test: borland-5.8.2*
dist_binomial_incl_test: borland-5.6.4* borland-5.8.2* sun-5.8
dist_chi_squared_incl_test: borland-5.8.2*
dist_complement_incl_test: borland-5.6.4* borland-5.8.2*
dist_extreme_val_incl_test: borland-5.6.4* borland-5.8.2*
dist_fisher_f_incl_test: borland-5.8.2*
dist_gamma_incl_test: borland-5.8.2*
dist_neg_binom_incl_test: borland-5.6.4* borland-5.8.2* sun-5.8
dist_poisson_incl_test: borland-5.6.4* borland-5.8.2* sun-5.8
dist_students_t_incl_test: borland-5.8.2*
dist_triangular_incl_test: borland-5.6.4* borland-5.8.2*
dist_uniform_incl_test: borland-5.6.4* borland-5.8.2*
dist_weibull_incl_test: borland-5.6.4* borland-5.8.2*
distribution_concept_check: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
hypot_test: borland-5.6.4* borland-5.8.2*
log1p_expm1_test: borland-5.8.2*
octonion_test: borland-5.8.2*
powm1_sqrtp1m1_test: borland-5.6.4* borland-5.8.2*
quaternion_mult_incl_test: borland-5.6.4* borland-5.8.2*
quaternion_test: borland-5.8.2*
sf_bessel_incl_test: borland-5.8.2*
sf_beta_incl_test: borland-5.8.2*
sf_binomial_incl_test: borland-5.6.4* borland-5.8.2*
sf_cbrt_incl_test: borland-5.8.2*
sf_cos_pi_incl_test: borland-5.6.4* borland-5.8.2*
sf_digamma_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_1_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_2_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_3_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_rc_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_rd_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_rf_incl_test: borland-5.6.4* borland-5.8.2*
sf_ellint_rj_incl_test: borland-5.6.4* borland-5.8.2*
sf_erf_incl_test: borland-5.6.4* borland-5.8.2*
sf_expm1_incl_test: borland-5.6.4* borland-5.8.2*
sf_factorials_incl_test: borland-5.6.4* borland-5.8.2*
sf_fpclassify_incl_test: borland-5.6.4* borland-5.8.2*
sf_hermite_incl_test: borland-5.6.4* borland-5.8.2*
sf_hypot_incl_test: borland-5.6.4* borland-5.8.2*
sf_laguerre_incl_test: borland-5.6.4* borland-5.8.2*
sf_lanczos_incl_test: borland-5.6.4* borland-5.8.2*
sf_log1p_incl_test: borland-5.6.4* borland-5.8.2*
sf_math_fwd_incl_test: borland-5.6.4* borland-5.8.2*
sf_powm1_incl_test: borland-5.6.4* borland-5.8.2*
sf_sign_incl_test: borland-5.6.4* borland-5.8.2* sun-5.8
sf_sin_pi_incl_test: borland-5.6.4* borland-5.8.2*
sf_sinc_incl_test: borland-5.6.4* borland-5.8.2*
sf_sinhc_incl_test: borland-5.6.4* borland-5.8.2*
sf_sph_harm_incl_test: borland-5.6.4* borland-5.8.2*
sf_sqrt1pm1_incl_test: borland-5.6.4* borland-5.8.2*
special_functions_test: borland-5.8.2*
std_real_concept_check: hp_cxx-71_006_tru64 sun-5.8
test_bessel_i: borland-5.6.4* borland-5.8.2* sun-5.8
test_bessel_j: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bessel_k: borland-5.6.4* borland-5.8.2* sun-5.8
test_bessel_y: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_beta: borland-5.6.4* borland-5.8.2*
test_beta_dist: sun-5.8
test_binomial_coeff: sun-5.8
test_binomial_double: sun-5.8
test_binomial_float: sun-5.8
test_binomial_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_binomial_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_carlson: borland-5.8.2* sun-5.8
test_cauchy: sun-5.8
test_cbrt: borland-5.8.2*
test_chi_squared: borland-5.8.2* sun-5.8
test_classify: borland-5.8.2* sun-5.8
test_constants: borland-5.6.4* borland-5.8.2* sun-5.8
test_digamma: borland-5.6.4* borland-5.8.2* sun-5.8
test_dist_overloads: sun-5.8
test_ellint_1: borland-5.6.4* borland-5.8.2* sun-5.8
test_ellint_2: borland-5.6.4* borland-5.8.2* sun-5.8
test_ellint_3: sun-5.8
test_erf: borland-5.6.4* borland-5.8.2* sun-5.8
test_error_handling: borland-5.6.4* borland-5.8.2*
test_exponential_dist: sun-5.8
test_extreme_value: borland-5.6.4* borland-5.8.2* sun-5.8
test_factorials: sun-5.8
test_find_location: sun-5.8
test_find_scale: sun-5.8
test_fisher_f: borland-5.8.2* sun-5.8
test_gamma: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_gamma_dist: borland-5.8.2* sun-5.8
test_ibeta_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_float: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_inv_ab_double: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_ab_float: sun-5.8
test_ibeta_inv_ab_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_inv_ab_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_inv_double: hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_float: sun-5.8
test_ibeta_inv_long_double: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_ibeta_long_double: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma_inv_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_igamma_inv_float: borland-5.8.2* sun-5.8
test_igamma_inv_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma_inv_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma_inva_double: hp_cxx-71_006_tru64 sun-5.8
test_igamma_inva_float: sun-5.8
test_igamma_inva_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_igamma_inva_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_instantiate1: hp_cxx-71_006_tru64 sun-5.8
test_legendre: sun-5.8
test_lognormal: sun-5.8
test_minima: borland-5.6.4* borland-5.8.2*
test_negative_binomial_double: sun-5.8
test_negative_binomial_float: borland-5.8.2* sun-5.8
test_negative_binomial_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_negative_binomial_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_normal: sun-5.8
test_pareto: borland-5.6.4* borland-5.8.2*
test_poisson_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_poisson_float: borland-5.6.4* borland-5.8.2*
test_poisson_long_double: borland-5.6.4* borland-5.8.2* sun-5.8
test_poisson_real_concept: borland-5.6.4* borland-5.8.2* sun-5.8
test_policy: gcc-mingw-3.4.5
test_policy_sf: sun-5.8
test_rationals: borland-5.6.4* borland-5.8.2*
test_rayleigh: sun-5.8
test_roots: hp_cxx-71_006_tru64 sun-5.8
test_spherical_harmonic: borland-5.6.4* borland-5.8.2* sun-5.8
test_students_t: borland-5.8.2* sun-5.8
test_tgamma_ratio: borland-5.6.4* borland-5.8.2* sun-5.8
test_traits: sun-5.8
test_triangular: borland-5.8.2* sun-5.8
test_uniform: borland-5.8.2*
test_weibull: borland-5.6.4* borland-5.8.2* sun-5.8
tools_config_inc_test: borland-5.6.4* borland-5.8.2*
tools_fraction_inc_test: borland-5.6.4* borland-5.8.2*
tools_minima_inc_test: borland-5.6.4* borland-5.8.2*
tools_polynomial_inc_test: borland-5.6.4* borland-5.8.2*
tools_precision_inc_test: borland-5.6.4* borland-5.8.2*
tools_rational_inc_test: borland-5.6.4* borland-5.8.2*
tools_real_cast_inc_test: borland-5.6.4* borland-5.8.2*
tools_roots_inc_test: sun-5.8
tools_stats_inc_test: borland-5.6.4* borland-5.8.2*
tools_test_data_inc_test: sun-5.8
tools_test_inc_test: borland-5.6.4* borland-5.8.2*
tools_toms748_inc_test: borland-5.6.4* borland-5.8.2*
|mpl|
advance: borland-5.6.4* borland-5.8.2*
always: borland-5.6.4* borland-5.8.2*
apply: gcc-4.1.2_sunos_i86pc
apply_wrap: borland-5.6.4* borland-5.8.2*
arithmetic: borland-5.6.4* borland-5.8.2*
assert: borland-5.6.4* borland-5.8.2*
at: borland-5.6.4* borland-5.8.2*
back: borland-5.6.4* borland-5.8.2*
bind: borland-5.6.4* borland-5.8.2*
bitwise: borland-5.6.4* borland-5.8.2*
bool: borland-5.6.4* borland-5.8.2*
comparison: borland-5.6.4* borland-5.8.2*
contains: borland-5.6.4* borland-5.8.2*
copy: borland-5.6.4* borland-5.8.2*
copy_if: borland-5.6.4* borland-5.8.2*
count: borland-5.6.4* borland-5.8.2*
count_if: borland-5.6.4* borland-5.8.2*
deque: borland-5.6.4* borland-5.8.2*
distance: borland-5.6.4* borland-5.8.2*
empty: borland-5.6.4* borland-5.8.2*
equal: borland-5.6.4* borland-5.8.2*
erase: borland-5.6.4* borland-5.8.2*
erase_range: borland-5.6.4* borland-5.8.2*
eval_if: borland-5.6.4* borland-5.8.2*
filter_view: borland-5.6.4* borland-5.8.2*
find: borland-5.6.4* borland-5.8.2*
find_if: borland-5.6.4* borland-5.8.2*
fold: borland-5.6.4* borland-5.8.2*
for_each: borland-5.6.4* borland-5.8.2*
front: borland-5.6.4* borland-5.8.2*
identity: borland-5.6.4* borland-5.8.2*
if: borland-5.6.4* borland-5.8.2*
index_of: borland-5.6.4* borland-5.8.2*
inherit: borland-5.6.4* borland-5.8.2*
insert: borland-5.6.4* borland-5.8.2*
insert_range: borland-5.6.4* borland-5.8.2*
int: borland-5.6.4* borland-5.8.2*
integral_c: borland-5.6.4* borland-5.8.2*
is_placeholder: borland-5.6.4* borland-5.8.2*
iterator_tags: borland-5.6.4* borland-5.8.2*
joint_view: borland-5.6.4* borland-5.8.2*
lambda: borland-5.6.4* borland-5.8.2*
lambda_args: borland-5.6.4* borland-5.8.2*
largest_int: borland-5.6.4* borland-5.8.2*
list: borland-5.6.4* borland-5.8.2*
list_c: borland-5.6.4* borland-5.8.2*
logical: borland-5.6.4* borland-5.8.2*
lower_bound: borland-5.6.4* borland-5.8.2*
max_element: borland-5.6.4* borland-5.8.2*
min_max: borland-5.6.4* borland-5.8.2*
msvc_is_class: borland-5.6.4* borland-5.8.2*
next: borland-5.6.4* borland-5.8.2*
no_has_xxx: borland-5.6.4* borland-5.8.2*
numeric_ops: borland-5.6.4* borland-5.8.2*
pair_view: borland-5.6.4* borland-5.8.2*
partition: borland-5.6.4* borland-5.8.2*
pop_front: borland-5.6.4* borland-5.8.2*
push_front: borland-5.6.4* borland-5.8.2*
range_c: borland-5.6.4* borland-5.8.2*
remove: borland-5.6.4* borland-5.8.2*
remove_if: borland-5.6.4* borland-5.8.2*
replace: borland-5.6.4* borland-5.8.2*
replace_if: borland-5.6.4* borland-5.8.2*
reverse: borland-5.6.4* borland-5.8.2*
same_as: borland-5.6.4* borland-5.8.2*
single_view: borland-5.6.4* borland-5.8.2*
size: borland-5.6.4* borland-5.8.2*
size_t: borland-5.6.4* borland-5.8.2*
sizeof: borland-5.6.4* borland-5.8.2*
sort: borland-5.6.4* borland-5.8.2*
stable_partition: borland-5.6.4* borland-5.8.2*
template_arity: borland-5.6.4* borland-5.8.2*
transform: borland-5.6.4* borland-5.8.2*
transform_view: borland-5.6.4* borland-5.8.2*
unique: borland-5.6.4* borland-5.8.2*
unpack_args: borland-5.6.4* borland-5.8.2*
upper_bound: borland-5.6.4* borland-5.8.2*
vector: borland-5.6.4* borland-5.8.2*
vector_c: borland-5.6.4* borland-5.8.2*
|numeric/conversion|
numeric_cast_test: borland-5.6.4* borland-5.8.2*
|numeric/interval|
add: borland-5.8.2*
cmp: borland-5.8.2*
cmp_exn: borland-5.8.2*
cmp_exp: borland-5.8.2*
cmp_lex: borland-5.8.2*
cmp_set: borland-5.8.2*
cmp_tribool: borland-5.8.2*
fmod: borland-5.8.2*
mul: borland-5.8.2*
pi: borland-5.8.2*
pow: borland-5.8.2*
test_float: borland-5.8.2*
|optional|
optional_test: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 hp_cxx-71_006_tru64
optional_test_inplace: borland-5.6.4* borland-5.8.2*
optional_test_io: borland-5.6.4* borland-5.8.2*
optional_test_ref: borland-5.6.4* borland-5.8.2*
optional_test_tie: borland-5.6.4* borland-5.8.2*
|parameter|
basics: borland-5.6.4* borland-5.8.2*
compose: borland-5.6.4* borland-5.8.2*
deduced: borland-5.6.4* borland-5.8.2*
deduced_dependent_predicate: borland-5.6.4* borland-5.8.2*
earwicker: borland-5.6.4* borland-5.8.2*
efficiency: borland-5.6.4* borland-5.8.2*
macros: borland-5.6.4* borland-5.8.2*
mpl: borland-5.6.4* borland-5.8.2*
ntp: borland-5.6.4* borland-5.8.2*
preprocessor: borland-5.6.4* borland-5.8.2*
sfinae: borland-5.6.4*
singular: borland-5.6.4* borland-5.8.2*
tutorial: borland-5.6.4* borland-5.8.2*
unwrap_cv_reference: borland-5.6.4* borland-5.8.2*
|pool|
test_pool_alloc: borland-5.6.4* borland-5.8.2*
|preprocessor|
arithmetic: borland-5.6.4* borland-5.8.2*
array: borland-5.6.4* borland-5.8.2*
comparison: borland-5.6.4* borland-5.8.2*
control: borland-5.6.4* borland-5.8.2*
debug: borland-5.6.4* borland-5.8.2*
facilities: borland-5.6.4* borland-5.8.2*
iteration: borland-5.6.4* borland-5.8.2*
list: borland-5.6.4* borland-5.8.2*
logical: borland-5.6.4* borland-5.8.2*
repetition: borland-5.6.4* borland-5.8.2*
selection: borland-5.6.4* borland-5.8.2*
seq: borland-5.6.4* borland-5.8.2*
slot: borland-5.6.4* borland-5.8.2*
tuple: borland-5.6.4* borland-5.8.2*
|program_options|
cmdline_test: borland-5.6.4* borland-5.8.2*
cmdline_test_dll: borland-5.6.4* borland-5.8.2*
options_description_test: borland-5.6.4* borland-5.8.2*
options_description_test_dll: borland-5.6.4* borland-5.8.2*
parsers_test: borland-5.6.4* borland-5.8.2*
parsers_test_dll: borland-5.6.4* borland-5.8.2*
positional_options_test: borland-5.6.4* borland-5.8.2*
positional_options_test_dll: borland-5.6.4* borland-5.8.2*
unicode_test: borland-5.6.4* borland-5.8.2*
unicode_test_dll: borland-5.6.4* borland-5.8.2*
variable_map_test: borland-5.6.4* borland-5.8.2*
variable_map_test_dll: borland-5.6.4* borland-5.8.2*
winmain: borland-5.6.4* borland-5.8.2*
winmain_dll: borland-5.6.4* borland-5.8.2*
|property_map|
dynamic_properties_test: borland-5.6.4* borland-5.8.2*
property_map_cc: borland-5.6.4* borland-5.8.2*
|ptr_container|
ptr_set: msvc-7.1 msvc-8.0
serialization: sun-5.8
|python|
exec: gcc-4.1.2_sunos_i86pc
import_: gcc-mingw-3.4.5 msvc-7.1 msvc-8.0 msvc-8.0
|random|
random_demo: borland-5.6.4* borland-5.8.2*
|range|
algorithm_example: borland-5.6.4* borland-5.8.2*
array: msvc-7.1
const_ranges: borland-5.6.4* borland-5.8.2*
extension_mechanism: borland-5.6.4* borland-5.8.2*
iterator_pair: borland-5.6.4* borland-5.8.2*
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* msvc-7.1 msvc-8.0 sun-5.8
partial_workaround: borland-5.6.4* borland-5.8.2*
reversible_range: borland-5.6.4* borland-5.8.2* msvc-7.1
std_container: borland-5.6.4* borland-5.8.2*
string: msvc-7.1
sub_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* msvc-7.1 sun-5.8
|rational|
rational_example: borland-5.6.4* borland-5.8.2*
rational_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|regex|
bad_expression_test: borland-5.6.4* borland-5.8.2*
captures_example: borland-5.6.4* borland-5.8.2*
captures_test: borland-5.6.4* borland-5.8.2*
concept_check: borland-5.6.4*
credit_card_example: borland-5.6.4* borland-5.8.2*
icu_concept_check: borland-5.6.4* borland-5.8.2*
icu_example: borland-5.6.4* borland-5.8.2*
mfc_example: borland-5.6.4* borland-5.8.2*
object_cache_test: borland-5.6.4* borland-5.8.2*
partial_regex_grep: borland-5.6.4* borland-5.8.2*
partial_regex_iterate: borland-5.6.4* borland-5.8.2*
partial_regex_match: borland-5.6.4* borland-5.8.2*
posix_api_check: borland-5.6.4* borland-5.8.2*
posix_api_check_cpp: borland-5.6.4* borland-5.8.2*
recursion_test: borland-5.6.4* borland-5.8.2*
regex_config_info: borland-5.6.4* borland-5.8.2*
regex_dll_config_info: borland-5.6.4* borland-5.8.2*
regex_grep_example_1: borland-5.6.4* borland-5.8.2*
regex_grep_example_2: borland-5.6.4* borland-5.8.2*
regex_grep_example_3: borland-5.6.4* borland-5.8.2*
regex_grep_example_4: borland-5.6.4* borland-5.8.2*
regex_iterator_example: borland-5.6.4* borland-5.8.2*
regex_match_example: borland-5.6.4* borland-5.8.2*
regex_merge_example: borland-5.6.4* borland-5.8.2*
regex_replace_example: borland-5.6.4* borland-5.8.2*
regex_search_example: borland-5.6.4* borland-5.8.2*
regex_split_example_1: borland-5.6.4* borland-5.8.2*
regex_split_example_2: borland-5.6.4* borland-5.8.2*
regex_timer: borland-5.6.4* borland-5.8.2*
regex_token_iterator_eg_1: borland-5.6.4* borland-5.8.2*
regex_token_iterator_eg_2: borland-5.6.4* borland-5.8.2*
static_mutex_test: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_collate_info: borland-5.6.4* borland-5.8.2*
test_grep: borland-5.6.4* borland-5.8.2*
unicode_iterator_test: borland-5.8.2*
wide_posix_api_check_c: borland-5.6.4* borland-5.8.2*
wide_posix_api_check_cpp: borland-5.6.4* borland-5.8.2*
|serialization|
test_array_binary_archive: borland-5.6.4* borland-5.8.2*
test_array_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_text_archive: borland-5.6.4* borland-5.8.2*
test_array_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_text_warchive: borland-5.6.4* borland-5.8.2*
test_array_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_array_xml_archive: borland-5.6.4* borland-5.8.2*
test_array_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_xml_warchive: borland-5.6.4* borland-5.8.2*
test_array_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_binary_binary_archive: borland-5.6.4* borland-5.8.2*
test_binary_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_text_archive: borland-5.6.4* borland-5.8.2*
test_binary_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_text_warchive: borland-5.6.4* borland-5.8.2*
test_binary_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_binary_xml_archive: borland-5.6.4* borland-5.8.2*
test_binary_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_xml_warchive: borland-5.6.4* borland-5.8.2*
test_binary_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_binary_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_warchive: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_warchive: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_codecvt_null: borland-5.6.4* borland-5.8.2*
test_const_pass: borland-5.6.4* borland-5.8.2*
test_contained_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_text_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_contained_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_binary_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_warchive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_warchive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_demo: borland-5.6.4* borland-5.8.2*
test_demo_auto_ptr: borland-5.6.4* borland-5.8.2*
test_demo_auto_ptr_dll: borland-5.6.4* borland-5.8.2*
test_demo_dll: borland-5.6.4* borland-5.8.2*
test_demo_exception: borland-5.6.4* borland-5.8.2*
test_demo_exception_dll: borland-5.6.4* borland-5.8.2*
test_demo_fast_archive: borland-5.6.4* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.6.4* borland-5.8.2*
test_demo_pimpl: borland-5.6.4* borland-5.8.2*
test_demo_pimpl_dll: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic_dll: borland-5.6.4* borland-5.8.2*
test_demo_portable_archive: borland-5.6.4* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2*
test_demo_shared_ptr: borland-5.6.4* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.6.4* borland-5.8.2*
test_demo_xml: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_demo_xml_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_demo_xml_load: borland-5.6.4* borland-5.8.2*
test_demo_xml_load_dll: borland-5.6.4* borland-5.8.2*
test_demo_xml_save: borland-5.6.4* borland-5.8.2*
test_demo_xml_save_dll: borland-5.6.4* borland-5.8.2*
test_deque_binary_archive: borland-5.6.4* borland-5.8.2*
test_deque_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_text_archive: borland-5.6.4* borland-5.8.2*
test_deque_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_text_warchive: borland-5.6.4* borland-5.8.2*
test_deque_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_deque_xml_archive: borland-5.6.4* borland-5.8.2*
test_deque_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_xml_warchive: borland-5.6.4* borland-5.8.2*
test_deque_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_binary_archive: borland-5.6.4* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_text_archive: borland-5.6.4* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_text_warchive: borland-5.6.4* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_xml_archive: borland-5.6.4* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_xml_warchive: borland-5.6.4* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_exported_binary_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_binary_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_warchive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_text_warchive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_warchive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_exported_xml_warchive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64
test_inclusion: borland-5.6.4* borland-5.8.2*
test_iterators: borland-5.6.4* borland-5.8.2*
test_iterators_base64: borland-5.6.4* borland-5.8.2*
test_list_binary_archive: borland-5.6.4* borland-5.8.2*
test_list_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_list_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_list_ptrs_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_binary_archive: borland-5.6.4* borland-5.8.2*
test_map_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_map_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mi_binary_archive: borland-5.6.4* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_text_archive: borland-5.6.4* borland-5.8.2*
test_mi_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_text_warchive: borland-5.6.4* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_mi_xml_archive: borland-5.6.4* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_xml_warchive: borland-5.6.4* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_mult_archive_types: borland-5.6.4* borland-5.8.2*
test_mult_archive_types_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_binary_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_binary_archive: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_default_ctor_binary_archive_dll: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_default_ctor_text_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_binary_archive: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_intrusive_binary_archive_dll: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_intrusive_text_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_binary_archive: borland-5.6.4* borland-5.8.2*
test_nvp_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_text_archive: borland-5.6.4* borland-5.8.2*
test_nvp_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_text_warchive: borland-5.6.4* borland-5.8.2*
test_nvp_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_xml_archive: borland-5.6.4* borland-5.8.2*
test_nvp_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_xml_warchive: borland-5.6.4* borland-5.8.2*
test_nvp_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_object_binary_archive: borland-5.6.4* borland-5.8.2*
test_object_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_text_archive: borland-5.6.4* borland-5.8.2*
test_object_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_text_warchive: borland-5.6.4* borland-5.8.2*
test_object_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_object_xml_archive: borland-5.6.4* borland-5.8.2*
test_object_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_xml_warchive: borland-5.6.4* borland-5.8.2*
test_object_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_optional_binary_archive: borland-5.6.4* borland-5.8.2*
test_optional_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_text_archive: borland-5.6.4* borland-5.8.2*
test_optional_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_text_warchive: borland-5.6.4* borland-5.8.2*
test_optional_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_optional_xml_archive: borland-5.6.4* borland-5.8.2*
test_optional_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_xml_warchive: borland-5.6.4* borland-5.8.2*
test_optional_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_binary_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_warchive: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_warchive: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_binary_archive: borland-5.6.4* borland-5.8.2*
test_primitive_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_text_archive: borland-5.6.4* borland-5.8.2*
test_primitive_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_text_warchive: borland-5.6.4* borland-5.8.2*
test_primitive_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_xml_archive: borland-5.6.4* borland-5.8.2*
test_primitive_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_xml_warchive: borland-5.6.4* borland-5.8.2*
test_primitive_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_private_ctor: borland-5.6.4* borland-5.8.2*
test_private_ctor_dll: borland-5.6.4* borland-5.8.2*
test_recursion_binary_archive: borland-5.6.4* borland-5.8.2*
test_recursion_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_text_archive: borland-5.6.4* borland-5.8.2*
test_recursion_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_text_warchive: borland-5.6.4* borland-5.8.2*
test_recursion_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_xml_archive: borland-5.6.4* borland-5.8.2*
test_recursion_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_xml_warchive: borland-5.6.4* borland-5.8.2*
test_recursion_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_registered_binary_archive: borland-5.6.4* borland-5.8.2*
test_registered_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_text_archive: borland-5.6.4* borland-5.8.2*
test_registered_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_text_warchive: borland-5.6.4* borland-5.8.2*
test_registered_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_registered_xml_archive: borland-5.6.4* borland-5.8.2*
test_registered_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_xml_warchive: borland-5.6.4* borland-5.8.2*
test_registered_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_reset_object_address: borland-5.6.4* borland-5.8.2*
test_reset_object_address_dll: borland-5.6.4* borland-5.8.2*
test_set_binary_archive: borland-5.8.2*
test_set_binary_archive_dll: borland-5.8.2*
test_set_text_archive: borland-5.8.2* borland-5.8.2*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_set_text_warchive: borland-5.8.2* borland-5.8.2*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_set_xml_archive: borland-5.8.2* borland-5.8.2*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2*
test_shared_ptr_132_binary_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_text_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_smart_cast: borland-5.6.4* borland-5.8.2*
test_split_binary_archive: borland-5.6.4* borland-5.8.2*
test_split_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_text_archive: borland-5.6.4* borland-5.8.2*
test_split_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_text_warchive: borland-5.6.4* borland-5.8.2*
test_split_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_split_xml_archive: borland-5.6.4* borland-5.8.2*
test_split_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_xml_warchive: borland-5.6.4* borland-5.8.2*
test_split_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_static_warning: borland-5.6.4* borland-5.8.2*
test_tracking_binary_archive: borland-5.6.4* borland-5.8.2*
test_tracking_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_text_archive: borland-5.6.4* borland-5.8.2*
test_tracking_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_text_warchive: borland-5.6.4* borland-5.8.2*
test_tracking_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_xml_archive: borland-5.6.4* borland-5.8.2*
test_tracking_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_xml_warchive: borland-5.6.4* borland-5.8.2*
test_tracking_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_traits_pass: borland-5.6.4* borland-5.8.2*
test_unregistered_binary_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_text_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_text_warchive: borland-5.6.4* borland-5.8.2*
test_unregistered_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_warchive: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_utf8_codecvt: borland-5.6.4* borland-5.8.2*
test_valarray_binary_archive: borland-5.6.4* borland-5.8.2*
test_valarray_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_valarray_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_variant_binary_archive: borland-5.6.4*
test_variant_binary_archive_dll: borland-5.6.4*
test_variant_text_archive: borland-5.6.4*
test_variant_text_archive_dll: borland-5.6.4*
test_variant_text_warchive: borland-5.6.4*
test_variant_text_warchive_dll: borland-5.6.4*
test_variant_xml_archive: borland-5.6.4*
test_variant_xml_archive_dll: borland-5.6.4*
test_variant_xml_warchive: borland-5.6.4*
test_variant_xml_warchive_dll: borland-5.6.4*
test_vector_binary_archive: borland-5.6.4* borland-5.8.2*
test_vector_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_vector_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_void_cast: borland-5.6.4* borland-5.8.2*
test_void_cast_dll: borland-5.6.4* borland-5.8.2*
|signals|
dead_slot_test: borland-5.6.4* borland-5.8.2*
deletion_test: borland-5.6.4* borland-5.8.2*
ordering_test: borland-5.6.4* borland-5.8.2*
signal_n_test: borland-5.6.4* borland-5.8.2*
trackable_test: borland-5.6.4* borland-5.8.2*
|smart_ptr|
atomic_count_test: borland-5.6.4* borland-5.8.2*
get_deleter_test: borland-5.6.4* borland-5.8.2*
intrusive_ptr_test: borland-5.6.4* borland-5.8.2*
lw_mutex_test: borland-5.6.4* borland-5.8.2*
pointer_cast_test: borland-5.6.4* borland-5.8.2*
pointer_to_other_test: borland-5.6.4* borland-5.8.2*
shared_from_this_test: borland-5.6.4* borland-5.8.2*
shared_ptr_alias_test: borland-5.6.4* borland-5.8.2*
shared_ptr_alloc2_test: borland-5.6.4* borland-5.8.2*
shared_ptr_basic_test: borland-5.6.4* borland-5.8.2*
shared_ptr_rv_test: borland-5.6.4* borland-5.8.2*
shared_ptr_test: borland-5.6.4* borland-5.8.2*
smart_ptr_test: borland-5.6.4* borland-5.8.2*
sp_unary_addr_test: borland-5.6.4* borland-5.8.2*
weak_ptr_test: borland-5.6.4* borland-5.8.2*
|spirit|
grammar_mt_tests: gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 hp_cxx-71_006_tru64 msvc-8.0
mix_and_match_trees: sun-5.8
owi_mt_tests: gcc-4.1.2_sunos_i86pc gcc-mingw-3.4.5 hp_cxx-71_006_tru64 msvc-8.0
|static_assert|
static_assert_example_2: borland-5.6.4* borland-5.8.2*
static_assert_example_3: borland-5.6.4* borland-5.8.2*
|system|
error_code_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_user_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_user_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
header_only_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
initialization_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
system_error_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5
system_error_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-mingw-3.4.5
|test|
boost_check_equal_str: sun-5.8
errors_handling_test: sun-5.8
fixed_mapping_test: sun-5.8
online_test: sun-5.8
parameterized_test_test: sun-5.8
result_report_test: sun-5.8
test_tools_test: sun-5.8
|thread|
test_barrier: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_barrier_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_condition: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_condition_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_lock_concept: borland-5.6.4* borland-5.8.2*
test_lock_concept_lib: borland-5.6.4* borland-5.8.2*
test_mutex: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_once: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_once_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_shared_mutex: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0
test_shared_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-7.1
test_thread: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_thread_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_tss: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_xtime: borland-5.6.4* borland-5.8.2*
test_xtime_lib: borland-5.6.4* borland-5.8.2*
|timer|
timer_test: borland-5.6.4* borland-5.8.2*
|tokenizer|
examples: borland-5.6.4* borland-5.8.2*
simple_example_1: borland-5.6.4* borland-5.8.2*
simple_example_2: borland-5.6.4* borland-5.8.2*
simple_example_3: borland-5.6.4* borland-5.8.2*
simple_example_4: borland-5.6.4* borland-5.8.2*
simple_example_5: borland-5.6.4* borland-5.8.2*
|tr1|
std_test_array: borland-5.8.2*
std_test_array_tricky: borland-5.8.2*
std_test_bind: borland-5.6.4* borland-5.8.2*
std_test_bind_header: borland-5.6.4* borland-5.8.2*
std_test_complex_header: borland-5.6.4* borland-5.8.2*
std_test_function_header: borland-5.6.4* borland-5.8.2*
std_test_hash: borland-5.6.4* borland-5.8.2*
std_test_hash_header: borland-5.6.4* borland-5.8.2*
std_test_integral_const_header: borland-5.6.4* borland-5.8.2*
std_test_mem_fn: borland-5.8.2*
std_test_mem_fn_header: borland-5.6.4* borland-5.8.2*
std_test_mpl_header: borland-5.6.4* borland-5.8.2*
std_test_ref_header: borland-5.6.4* borland-5.8.2*
std_test_reference_wrapper: borland-5.6.4* borland-5.8.2*
std_test_regex: borland-5.8.2*
std_test_result_of_header: borland-5.6.4* borland-5.8.2*
std_test_shared_array_header: borland-5.6.4* borland-5.8.2*
std_test_shared_from_this_header: borland-5.6.4* borland-5.8.2*
std_test_shd_this_header: borland-5.6.4* borland-5.8.2*
std_test_tr1_include: borland-5.8.2*
std_test_tuple: borland-5.8.2*
std_test_tuple_tricky: sun-5.8
std_test_type_traits_header: borland-5.6.4* borland-5.8.2*
std_test_weak_ptr_header: borland-5.6.4* borland-5.8.2*
test_algorithm_std_header: borland-5.6.4* borland-5.8.2*
test_array: borland-5.8.2*
test_array_tricky: borland-5.8.2*
test_bind: borland-5.6.4* borland-5.8.2*
test_bind_header: borland-5.6.4* borland-5.8.2*
test_bitset_std_header: borland-5.6.4* borland-5.8.2*
test_complex_header: borland-5.6.4* borland-5.8.2*
test_complex_std_header: borland-5.6.4* borland-5.8.2*
test_deque_std_header: borland-5.6.4* borland-5.8.2*
test_exception_std_header: borland-5.6.4* borland-5.8.2*
test_fstream_std_header: borland-5.6.4* borland-5.8.2*
test_function_header: borland-5.6.4* borland-5.8.2*
test_functional_std_header: borland-5.6.4* borland-5.8.2*
test_hash: borland-5.6.4* borland-5.8.2*
test_hash_header: borland-5.6.4* borland-5.8.2*
test_integral_const_header: borland-5.6.4* borland-5.8.2*
test_iomanip_std_header: borland-5.6.4* borland-5.8.2*
test_ios_std_header: borland-5.6.4* borland-5.8.2*
test_iostream_std_header: borland-5.6.4* borland-5.8.2*
test_istream_std_header: borland-5.6.4* borland-5.8.2*
test_iterator_std_header: borland-5.6.4* borland-5.8.2*
test_limits_std_header: borland-5.6.4* borland-5.8.2*
test_list_std_header: borland-5.6.4* borland-5.8.2*
test_locale_std_header: borland-5.6.4* borland-5.8.2*
test_map_std_header: borland-5.6.4* borland-5.8.2*
test_mem_fn: borland-5.8.2*
test_mem_fn_header: borland-5.6.4* borland-5.8.2*
test_memory_std_header: borland-5.6.4* borland-5.8.2*
test_mpl_header: borland-5.6.4* borland-5.8.2*
test_new_std_header: borland-5.6.4* borland-5.8.2*
test_numeric_std_header: borland-5.6.4* borland-5.8.2*
test_ostream_std_header: borland-5.6.4* borland-5.8.2*
test_queue_std_header: borland-5.6.4* borland-5.8.2*
test_ref_header: borland-5.6.4* borland-5.8.2*
test_reference_wrapper: borland-5.6.4* borland-5.8.2*
test_regex: borland-5.8.2*
test_result_of_header: borland-5.6.4* borland-5.8.2*
test_set_std_header: borland-5.6.4* borland-5.8.2*
test_shared_array_header: borland-5.6.4* borland-5.8.2*
test_shared_from_this_header: borland-5.6.4* borland-5.8.2*
test_shd_this_header: borland-5.6.4* borland-5.8.2*
test_sstream_std_header: borland-5.6.4* borland-5.8.2*
test_stack_std_header: borland-5.6.4* borland-5.8.2*
test_stdexcept_std_header: borland-5.6.4* borland-5.8.2*
test_streambuf_std_header: borland-5.6.4* borland-5.8.2*
test_string_std_header: borland-5.6.4* borland-5.8.2*
test_strstream_std_header: borland-5.6.4* borland-5.8.2*
test_tr1_include: borland-5.8.2*
test_tuple: borland-5.8.2*
test_tuple_tricky: sun-5.8
test_type_traits_header: borland-5.6.4* borland-5.8.2*
test_typeinfo_std_header: borland-5.6.4* borland-5.8.2*
test_utility_std_header: borland-5.6.4* borland-5.8.2*
test_valarray_std_header: borland-5.6.4* borland-5.8.2*
test_vector_std_header: borland-5.6.4* borland-5.8.2*
test_weak_ptr_header: borland-5.6.4* borland-5.8.2*
tr1_add_const_test: borland-5.8.2*
tr1_add_cv_test: borland-5.8.2*
tr1_add_pointer_test: borland-5.8.2*
tr1_add_reference_test: borland-5.8.2*
tr1_add_volatile_test: borland-5.8.2*
tr1_aligned_storage_test: borland-5.8.2*
tr1_alignment_of_test: borland-5.8.2*
tr1_has_nothrow_assign_test: borland-5.8.2*
tr1_has_nothrow_constr_test: borland-5.8.2*
tr1_has_nothrow_copy_test: borland-5.8.2*
tr1_has_tr1_array_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_bind_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_cx_over_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_cx_trig_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_function_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_hash_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_mem_fn_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_random_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_ref_wrap_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_regex_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_result_of_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_shared_ptr_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_tt_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_tuple_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_un_map_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_un_set_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_utility_pass: borland-5.6.4* borland-5.8.2*
tr1_has_trivial_assign_test: borland-5.8.2*
tr1_has_trivial_constr_test: borland-5.8.2*
tr1_has_trivial_copy_test: borland-5.8.2*
tr1_has_trivial_destr_test: borland-5.8.2*
tr1_has_virtual_destr_test: borland-5.8.2*
tr1_is_arithmetic_test: borland-5.8.2*
tr1_is_array_test: borland-5.8.2*
tr1_is_class_test: borland-5.8.2*
tr1_is_compound_test: borland-5.8.2*
tr1_is_const_test: borland-5.8.2*
tr1_is_empty_test: borland-5.8.2*
tr1_is_enum_test: borland-5.8.2*
tr1_is_floating_point_test: borland-5.8.2*
tr1_is_function_test: borland-5.8.2*
tr1_is_fundamental_test: borland-5.8.2*
tr1_is_integral_test: borland-5.8.2*
tr1_is_member_func_test: borland-5.8.2*
tr1_is_member_obj_test: borland-5.8.2*
tr1_is_member_pointer_test: borland-5.8.2*
tr1_is_object_test: borland-5.8.2*
tr1_is_pod_test: borland-5.8.2*
tr1_is_pointer_test: borland-5.8.2*
tr1_is_polymorphic_test: borland-5.8.2*
tr1_is_reference_test: borland-5.8.2*
tr1_is_same_test: borland-5.8.2*
tr1_is_scalar_test: borland-5.8.2*
tr1_is_signed_test: borland-5.8.2* borland-5.8.2*
tr1_is_union_test: borland-5.8.2*
tr1_is_unsigned_test: borland-5.8.2* borland-5.8.2*
tr1_is_void_test: borland-5.8.2*
tr1_is_volatile_test: borland-5.8.2*
tr1_remove_cv_test: borland-5.8.2*
tr1_remove_reference_test: borland-5.8.2*
tr1_tky_abstract_type_test: borland-5.8.2*
|tuple|
another_tuple_test_bench: borland-5.6.4* borland-5.8.2*
io_test: borland-5.6.4* borland-5.8.2*
tuple_test_bench: borland-5.6.4* borland-5.8.2*
|type_traits|
add_const_test: borland-5.6.4* borland-5.8.2*
add_cv_test: borland-5.6.4* borland-5.8.2*
add_pointer_test: borland-5.6.4* borland-5.8.2*
add_reference_test: borland-5.6.4* borland-5.8.2*
add_volatile_test: borland-5.6.4* borland-5.8.2*
aligned_storage_test: borland-5.6.4* borland-5.8.2*
alignment_of_test: borland-5.6.4* borland-5.8.2*
function_traits_test: borland-5.6.4* borland-5.8.2*
has_nothrow_assign_test: borland-5.6.4* borland-5.8.2*
has_nothrow_constr_test: borland-5.6.4* borland-5.8.2*
has_nothrow_copy_test: borland-5.6.4* borland-5.8.2*
has_trivial_assign_test: borland-5.6.4* borland-5.8.2*
has_trivial_constr_test: borland-5.6.4* borland-5.8.2*
has_trivial_copy_test: borland-5.6.4* borland-5.8.2*
has_trivial_destructor_test: borland-5.6.4* borland-5.8.2*
has_virtual_destructor_test: borland-5.6.4* borland-5.8.2*
is_arithmetic_test: borland-5.6.4* borland-5.8.2*
is_array_test: borland-5.6.4* borland-5.8.2*
is_class_test: borland-5.6.4* borland-5.8.2*
is_complex_test: borland-5.6.4* borland-5.8.2*
is_compound_test: borland-5.6.4* borland-5.8.2*
is_const_test: borland-5.6.4* borland-5.8.2*
is_empty_test: borland-5.6.4* borland-5.8.2*
is_enum_test: borland-5.6.4* borland-5.8.2*
is_float_test: borland-5.6.4* borland-5.8.2*
is_floating_point_test: borland-5.6.4* borland-5.8.2*
is_function_test: borland-5.6.4* borland-5.8.2*
is_fundamental_test: borland-5.6.4* borland-5.8.2*
is_integral_test: borland-5.6.4* borland-5.8.2*
is_member_func_test: borland-5.6.4* borland-5.8.2*
is_member_obj_test: borland-5.6.4* borland-5.8.2*
is_member_pointer_test: borland-5.6.4* borland-5.8.2*
is_object_test: borland-5.6.4* borland-5.8.2*
is_pod_test: borland-5.6.4* borland-5.8.2*
is_pointer_test: borland-5.6.4* borland-5.8.2*
is_polymorphic_test: borland-5.6.4* borland-5.8.2*
is_reference_test: borland-5.6.4* borland-5.8.2*
is_same_test: borland-5.6.4* borland-5.8.2*
is_scalar_test: borland-5.6.4* borland-5.8.2*
is_signed_test: borland-5.6.4* borland-5.8.2*
is_stateless_test: borland-5.6.4* borland-5.8.2*
is_union_test: borland-5.6.4* borland-5.8.2*
is_unsigned_test: borland-5.6.4* borland-5.8.2*
is_void_test: borland-5.6.4* borland-5.8.2*
is_volatile_test: borland-5.6.4* borland-5.8.2*
remove_cv_test: borland-5.6.4* borland-5.8.2*
remove_reference_test: borland-5.6.4* borland-5.8.2*
tricky_abstract_type_test: borland-5.6.4* borland-5.8.2*
type_with_alignment_test: borland-5.6.4* borland-5.8.2*
udt_specialisations: borland-5.6.4* borland-5.8.2*
|typeof|
data_member_emulation: borland-5.8.2*
experimental_1_emulation: borland-5.8.2* msvc-7.1 msvc-8.0 sun-5.8
experimental_1_native: msvc-7.1 msvc-8.0
experimental_2_emulation: borland-5.8.2* sun-5.8
experimental_3_emulation: borland-5.8.2* msvc-8.0 sun-5.8
experimental_3_native: msvc-8.0
experimental_4_emulation: borland-5.8.2* sun-5.8
function_ptr_emulation: borland-5.8.2*
function_ptr_from_tpl_emulation: sun-5.8
function_ref_emulation: borland-5.8.2*
member_function_emulation: borland-5.8.2*
noncopyable_emulation: borland-5.8.2*
odr_emulation: borland-5.8.2*
odr_no_uns: borland-5.8.2*
std_emulation: borland-5.8.2*
template_dependent_emulation: borland-5.8.2*
template_enum_emulation: borland-5.8.2*
template_int_emulation: borland-5.8.2*
template_multiword_emulation: borland-5.8.2*
template_tpl_emulation: borland-5.8.2*
template_type_emulation: borland-5.8.2*
type_emulation: borland-5.8.2*
|utility|
addressof_test: borland-5.6.4* borland-5.8.2*
assert_test: borland-5.6.4* borland-5.8.2*
base_from_member_test: borland-5.6.4* borland-5.8.2*
binary_search_test: borland-5.6.4* borland-5.8.2*
call_traits_test: borland-5.8.2*
compressed_pair_test: borland-5.6.4* borland-5.8.2*
current_function_test: borland-5.6.4* borland-5.8.2*
iterators_test: borland-5.6.4* borland-5.8.2*
next_prior_test: borland-5.6.4* borland-5.8.2*
operators_test: borland-5.6.4* borland-5.8.2*
ref_ct_test: borland-5.6.4* borland-5.8.2*
ref_test: borland-5.6.4* borland-5.8.2*
result_of_test: sun-5.8
shared_iterator_test: borland-5.6.4* borland-5.8.2*
value_init_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|variant|
variant_comparison_test: borland-5.6.4* borland-5.8.2*
variant_reference_test: borland-5.6.4* borland-5.8.2*
variant_test2: borland-5.6.4* borland-5.8.2*
variant_test3: borland-5.6.4* borland-5.8.2*
variant_test4: borland-5.6.4* borland-5.8.2*
variant_test6: borland-5.6.4* borland-5.8.2*
variant_test7: borland-5.6.4* borland-5.8.2*
variant_test8: borland-5.6.4* borland-5.8.2*
|wave|
testwave: gcc-mingw-3.4.5
1
0
Hi,
In a recent build error thread I saw that new thread library's
emulated move semantics were placed in boost namespace. I think this
hasn't been discussed in the list and I'm afraid this can be problematic
if other libraries go the same route.
I've used my own move-emulation version in Boost.Interprocess under
boost::interprocess namespace. I would really like to switch to the
boost namespace version (supposing it's the official or pseudo-official
move semantics emulation code) but newly added move emulation from
thread is in boost/thread/detail and that suggests it's an
implementation detail.
Is there any chance to move that code to boost root so that I can start
also using this or we should wait until a move emulation library is
accepted?
Regards,
Ion
5
5

[interprocess] basic_multiallocation_iterator, operator * and -> question
by Markus Schöpflin 27 Oct '07
by Markus Schöpflin 27 Oct '07
27 Oct '07
Hello,
in the file mem_algo_common.hpp there is a class
basic_multiallocation_iterator (line 50ff).
This class contains both definitions for operator* and operator->, where
operator* is implemented as:
value_type operator*() const
{
value_type v = (char*)detail::get_pointer(next_alloc_.next_);
return v;
}
and operator->() as:
pointer operator->() const
{ return &operator*(); }
The second definition confuses both me and my compiler. Does &operator*()
actually mean &(*this)? If yes, wouldn't this mean that operator-> returns
the address of a stack allocated result variable, namely the address of the
result of operator*? If no, what does this actually mean?
Thanks for enlightening me,
Markus
4
4