Boost
Threads by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 33 participants
- 33386 discussions
[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
Hi,
I'm already working on a GUI library for some time (three weeks). And
come up with some designs and code.
I'm sure to have it for review when ready and I would like to ask for
comments here to get it going in the right direction.
The code is in www.sourceforge.net/projects/cppgui
The code is not completely compiling right now, but I'm writing it
with support for win32/64, gtk and qt.
The main design decision I have is that the GUI interface and the
implementation specific code is completely decoupled. That way I can
have a application that executes win32, gtk *and* qt at the same time.
It is indeed what the first example does.
In that, I call the implementations as drivers. And I can have the
driver specified in the create window function. Just as this:
wnd<> w = create<frame_window>( _driver = drivers::win32 );
For this to work, I had to create two hierarchies:
window window_impl_base
| |
/ \ / \
/ \ / \
/ \ / \
/ \ / \
frame button frame_impl_base button_impl_base
The first hierarchy is the one exposed to the user and the second must
be derived from the drivers.
The first can be subclassed by the user with this syntax:
class my_frame : gui::subclass<my_frame, gui::frame>
{
my_frame()
{
wnd_lock<my_frame> w = wnd_pointer_cast_lock<my_frame>(wnd_from_this());
wnd_lock<gui::controls:button> btn = create<gui::controls::button>
( _parent = w, _size = std::make_pair(20, 20) );
btn_ = btn;
}
static void info(gui::create_info& i) { i.pos = std::make_pair(100, 100); }
wnd<> btn_;
};
And then the info function is called before my_frame instantiation
automagically. This way my_frame can override the window creation
properties before it is actually created by the driver.
There's a injection of the window implementation in the window base
class of the hierarchy too, so that calling GUI functions from inside
the constructor would be safe too.
Now, what I think is the most complicated part: wnd<> and wnd_lock<> classes.
I decided to use functors as a way to execute handlers for GUI events.
Therefore, window smart pointers could end up inside functors objects
through boost::bind and others. The problem is: The window should be
destroyable while waiting for user response. But if smart pointers
inside functors were registered within the window, there would be a
cyclic relationship that would prohibit it. And then I created these
two classes. wnd<> being like weak_ptr in shared_ptr and wnd_lock<>
would be the shared_ptr itself.
I honestly do not like this solution and even less the wnd_lock<>
name. It even seem to imply thread mutual exclusion, which it does
*not*.
Also, I found when using asio and win32gui that it is nice to have a
class just for the handlers, which holds all its state.
So I created a way to register event classes to windows, and to which
you can return a functor that returns this event class object to be
used in the handler binder.
So you can do this:
struct event_class
{
void btn_clicked(wnd_lock<> btn)
{
// do something
}
int x; // data required for handlers
};
my_frame::my_frame()
{
wnd_lock<controls::button> btn = create<controls::button>
( _parent = wnd_from_this(), _text = "My button!" );
add_event_class<event_class>();
// this registers to call event_class::btn_clicked with
// the event_class object under the window's lifetime management.
btn->on_click(boost::bind(&event_class::btn_clicked
, boost::bind(get_event_f<event_class>(), _1 ));
}
That way event classes can be completely defined inside a .cpp file,
and any alteration to it wouldn't need the world to recompile, nor
would be coupling between event handlers and the visual creation code.
In theory, at least.
But I find the syntax horrible for event registration and the event
handler class ends up being referenced *a lot* inside the window's
constructor.
So, any comments would be *really* appreciated. And keep in mind that
the library is in pre-alpha state (and that's why I'm posting this rfc
here, so that I can find a better design to code). Which means that
most parts aren't implemented yet. (Most controls, dialogs, resource
files, etc).
Thanks and best regards,
--
Felipe Magno de Almeida
9
10
Boost regression test failures
Report time: 2007-10-27T12:15:46Z
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
3415 failures in 64 libraries (283 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 (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 (2 of 26 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 (57 of 509 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 (91 of 296 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 (2 of 12 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 (2 of 30 failures are from non-broken platforms)
property_map (0 of 4 failures are from non-broken platforms)
ptr_container (3)
python (4)
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 (7)
static_assert (0 of 4 failures are from non-broken platforms)
system (0 of 32 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)
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 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* 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* gcc-4.1.2_sunos_i86pc msvc-8.0
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_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 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* msvc-8.0
winmain_dll: borland-5.6.4* borland-5.8.2* msvc-8.0
|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_: 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 hp_cxx-71_006_tru64 msvc-8.0
mix_and_match_trees: sun-5.8
owi_mt_tests: gcc-4.1.2_sunos_i86pc 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*
system_error_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|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*
1
0
I'm using boost-build to build my own code as well as any Boost
libraries I link to.
At the end of this message is an example log I'm getting, every time I
build anything. Note, I am not even using boost regex or boost thread
in this case.
Is there justification for all this garbage?
Thanks,
Emil Dotchevski
warning: Graph library does not contain optional GraphML reader.
note: to enable GraphML support, set EXPAT_INCLUDE and EXPAT_LIBPATH to the
note: directories containing the Expat headers and libraries, respectively.
warning: skipping optional Message Passing Interface (MPI) library.
note: to enable MPI support, add "using mpi ;" to user-config.jam.
note: to suppress this message, pass "--without-mpi" to bjam.
note: otherwise, you can safely ignore this message.
Building Boost.Regex with the optional Unicode/ICU support disabled.
Please refer to the Boost.Regex documentation for more information
(don't panic: this is a strictly optional feature).
******************************************************
Building Boost.Thread without optional pthread support
If you need pthread you should specify the paths.
For example:
PTW32_INCLUDE=C:\Program Files\ptw32\Pre-built2\include
PTW32_LIB=C:\Program Files\ptw32\Pre-built2\lib\pthreadVC2.lib
******************************************************
....
2
1
Hi,
I plan to port boost thread lib over to the VMware server. After I build the
unit test of boost thread, but I can't find any executable file so I can run
to get the first look of the library. Any hint or pointer is very
appreciated.
Thanks,
sto
1
0
Boost regression test failures
Report time: 2007-10-26T11:46: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
3777 failures in 67 libraries (646 are from non-broken platforms)
algorithm/minmax (2 of 6 failures are from non-broken platforms)
algorithm/string (8 of 22 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 (84)
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 (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 (2 of 26 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 (59 of 511 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 (104)
intrusive (24)
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 (171 of 371 failures are from non-broken platforms)
mpl (1 of 157 failures are from non-broken platforms)
multi_index (20)
numeric/conversion (5 of 7 failures are from non-broken platforms)
numeric/interval (0 of 12 failures are from non-broken platforms)
optional (2 of 12 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 (7)
python (4)
random (1 of 3 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 (8 of 81 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 (10)
static_assert (0 of 4 failures are from non-broken platforms)
system (0 of 32 failures are from non-broken platforms)
test (7)
thread (20 of 72 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 (6 of 230 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 34 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 (3)
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* hp_cxx-71_006_tru64
minmax_element: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
|algorithm/string|
conv: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
find: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
join: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
predicate: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
regex: hp_cxx-71_006_tru64
replace: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
split: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
trim: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
|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|
basic_datagram_socket: msvc-8.0
basic_datagram_socket_select: msvc-8.0
basic_deadline_timer: msvc-8.0
basic_deadline_timer_select: msvc-8.0
basic_socket_acceptor: msvc-8.0
basic_socket_acceptor_select: msvc-8.0
basic_stream_socket: msvc-8.0
basic_stream_socket_select: msvc-8.0
buffer: msvc-8.0
buffer_select: msvc-8.0
buffered_read_stream: msvc-8.0
buffered_read_stream_select: msvc-8.0
buffered_stream: msvc-8.0
buffered_stream_select: msvc-8.0
buffered_write_stream: msvc-8.0
buffered_write_stream_select: msvc-8.0
completion_condition: msvc-8.0
completion_condition_select: msvc-8.0
datagram_socket_service: msvc-8.0
datagram_socket_service_select: msvc-8.0
deadline_timer: msvc-8.0
deadline_timer_select: msvc-8.0
deadline_timer_service: msvc-8.0
deadline_timer_service_select: msvc-8.0
error: msvc-8.0
error_select: msvc-8.0
io_service: msvc-8.0
io_service_select: msvc-8.0
ip_address: msvc-8.0
ip_address_select: msvc-8.0
ip_address_v4: msvc-8.0
ip_address_v4_select: msvc-8.0
ip_address_v6: msvc-8.0
ip_address_v6_select: msvc-8.0
ip_basic_endpoint: msvc-8.0
ip_basic_endpoint_select: msvc-8.0
ip_basic_resolver: msvc-8.0
ip_basic_resolver_entry: msvc-8.0
ip_basic_resolver_entry_select: msvc-8.0
ip_basic_resolver_iterator: msvc-8.0
ip_basic_resolver_iterator_select: msvc-8.0
ip_basic_resolver_query: msvc-8.0
ip_basic_resolver_query_select: msvc-8.0
ip_basic_resolver_select: msvc-8.0
ip_host_name: msvc-8.0
ip_host_name_select: msvc-8.0
ip_multicast: acc msvc-8.0
ip_multicast_select: acc msvc-8.0
ip_resolver_query_base: msvc-8.0
ip_resolver_query_base_select: msvc-8.0
ip_resolver_service: msvc-8.0
ip_resolver_service_select: msvc-8.0
ip_tcp: msvc-8.0
ip_tcp_select: msvc-8.0
ip_udp: msvc-8.0
ip_udp_select: msvc-8.0
ip_unicast: msvc-8.0
ip_unicast_select: msvc-8.0
ip_v6_only: msvc-8.0
ip_v6_only_select: msvc-8.0
is_read_buffered: msvc-8.0
is_read_buffered_select: msvc-8.0
is_write_buffered: msvc-8.0
is_write_buffered_select: msvc-8.0
placeholders: msvc-8.0
placeholders_select: msvc-8.0
read: msvc-8.0
read_select: msvc-8.0
read_until: msvc-8.0
read_until_select: msvc-8.0
socket_acceptor_service: msvc-8.0
socket_acceptor_service_select: msvc-8.0
socket_base: msvc-8.0
socket_base_select: msvc-8.0
strand: msvc-8.0
strand_select: msvc-8.0
stream_socket_service: msvc-8.0
stream_socket_service_select: msvc-8.0
time_traits: msvc-8.0
time_traits_select: msvc-8.0
write: msvc-8.0
write_select: msvc-8.0
|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 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* 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: 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
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|
adaptive_node_pool_test: msvc-8.0
adaptive_pool_test: msvc-8.0
allocexcept_test: msvc-8.0
bufferstream_test: msvc-8.0
cached_adaptive_pool_test: msvc-8.0
cached_node_allocator_test: msvc-8.0
condition_test: msvc-8.0
data_test: msvc-8.0
deque_test: hp_cxx-71_006_tru64 msvc-8.0
doc_adaptive_pool: msvc-8.0
doc_allocator: msvc-8.0
doc_anonymous_conditionA: msvc-8.0
doc_anonymous_conditionB: msvc-8.0
doc_anonymous_mutexA: msvc-8.0
doc_anonymous_mutexB: msvc-8.0
doc_anonymous_semaphoreA: msvc-8.0
doc_anonymous_semaphoreB: msvc-8.0
doc_anonymous_upgradable_mutexA: msvc-8.0
doc_anonymous_upgradable_mutexB: msvc-8.0
doc_bufferstream: msvc-8.0
doc_cached_adaptive_pool: msvc-8.0
doc_cached_node_allocator: msvc-8.0
doc_cont: msvc-8.0
doc_contA: msvc-8.0
doc_contB: msvc-8.0
doc_file_mapping: msvc-8.0
doc_file_mapping2: msvc-8.0
doc_intrusive: msvc-8.0
doc_ipc_messageA: msvc-8.0
doc_ipc_messageB: msvc-8.0
doc_managed_aligned_allocation: msvc-8.0
doc_managed_allocation_command: msvc-8.0
doc_managed_construction_info: msvc-8.0
doc_managed_external_buffer: msvc-8.0
doc_managed_heap_memory: msvc-8.0
doc_managed_mapped_file: msvc-8.0
doc_managed_multiple_allocation: msvc-8.0
doc_managed_raw_allocation: msvc-8.0
doc_map: msvc-8.0
doc_message_queueA: msvc-8.0
doc_message_queueB: msvc-8.0
doc_move_containers: msvc-8.0
doc_named_allocA: msvc-8.0
doc_named_allocB: msvc-8.0
doc_named_mutex: msvc-8.0
doc_node_allocator: msvc-8.0
doc_offset_ptr: msvc-8.0
doc_private_adaptive_pool: msvc-8.0
doc_private_node_allocator: msvc-8.0
doc_scoped_ptr: msvc-8.0
doc_shared_memory: msvc-8.0
doc_shared_memory2: msvc-8.0
doc_shared_ptr: msvc-8.0
doc_shared_ptr_explicit: msvc-8.0
doc_unique_ptr: msvc-8.0
doc_vectorstream: msvc-8.0
doc_where_allocate: msvc-8.0
doc_windows_shared_memory: msvc-8.0
doc_windows_shared_memory2: msvc-8.0
file_mapping_test: msvc-8.0
flat_map_index_allocation_test: msvc-8.0
flat_tree_test: msvc-8.0
intrusive_ptr_test: hp_cxx-71_006_tru64 msvc-8.0
iset_index_allocation_test: msvc-8.0
iunordered_set_index_allocation_test: msvc-8.0
list_test: msvc-8.0
managed_mapped_file_test: msvc-8.0
managed_shared_memory_test: msvc-8.0
managed_windows_shared_memory_test: msvc-8.0
map_index_allocation_test: msvc-8.0
mapped_file_test: msvc-8.0
memory_algorithm_test: msvc-8.0
message_queue_test: msvc-8.0
mutex_test: msvc-8.0
named_condition_test: msvc-8.0
named_mutex_test: msvc-8.0
named_recursive_mutex_test: msvc-8.0
named_semaphore_test: msvc-8.0
named_upgradable_mutex_test: msvc-8.0
node_allocator_test: msvc-8.0
node_pool_test: hp_cxx-71_006_tru64 msvc-8.0
null_index_test: msvc-8.0
private_adaptive_pool_test: msvc-8.0
private_node_allocator_test: msvc-8.0
recursive_mutex_test: msvc-8.0
semaphore_test: msvc-8.0
shared_memory_mapping_test: msvc-8.0
shared_memory_test: msvc-8.0
shared_ptr_test: msvc-8.0
slist_test: msvc-8.0
string_test: hp_cxx-71_006_tru64 msvc-8.0
tree_test: msvc-8.0
unique_ptr_test: msvc-8.0
upgradable_mutex_test: msvc-8.0
user_buffer_test: msvc-8.0
vector_test: hp_cxx-71_006_tru64 msvc-8.0
vectorstream_test: msvc-8.0
windows_shared_memory_mapping_test: msvc-8.0
windows_shared_memory_test: msvc-8.0
|intrusive|
doc_advanced_value_traits: msvc-8.0
doc_advanced_value_traits2: msvc-8.0
doc_assoc_optimized_code: msvc-8.0
doc_auto_unlink: msvc-8.0
doc_bucket_traits: msvc-8.0
doc_clone_from: msvc-8.0
doc_entity: msvc-8.0
doc_erasing_and_disposing: msvc-8.0
doc_external_value_traits: msvc-8.0
doc_how_to_use: msvc-8.0
doc_iterator_from_value: msvc-8.0
doc_list: msvc-8.0
doc_list_algorithms: msvc-8.0
doc_offset_ptr: msvc-8.0
doc_rbtree_algorithms: msvc-8.0
doc_set: msvc-8.0
doc_slist: msvc-8.0
doc_slist_algorithms: msvc-8.0
doc_splay_algorithms: msvc-8.0
doc_splay_set: msvc-8.0
doc_stateful_value_traits: msvc-8.0
doc_unordered_set: msvc-8.0
doc_value_traits: msvc-8.0
doc_window: msvc-8.0
|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
complex_test: hp_cxx-71_006_tru64
dist_bernoulli_incl_test: borland-5.8.2*
dist_beta_incl_test: borland-5.8.2*
dist_binomial_incl_test: borland-5.8.2* sun-5.8
dist_cauchy_incl_test: borland-5.8.2* borland-5.8.2*
dist_chi_squared_incl_test: borland-5.8.2*
dist_complement_incl_test: borland-5.8.2*
dist_exponential_incl_test: borland-5.8.2* borland-5.8.2*
dist_extreme_val_incl_test: borland-5.8.2*
dist_fisher_f_incl_test: borland-5.8.2*
dist_gamma_incl_test: borland-5.8.2*
dist_lognormal_incl_test: borland-5.8.2* borland-5.8.2*
dist_neg_binom_incl_test: borland-5.8.2* sun-5.8
dist_normal_incl_test: borland-5.8.2* borland-5.8.2*
dist_poisson_incl_test: borland-5.8.2* sun-5.8
dist_students_t_incl_test: borland-5.8.2*
dist_triangular_incl_test: borland-5.8.2*
dist_uniform_incl_test: borland-5.8.2*
dist_weibull_incl_test: borland-5.8.2*
distribution_concept_check: borland-5.8.2* hp_cxx-71_006_tru64
hypot_test: hp_cxx-71_006_tru64
log1p_expm1_test: hp_cxx-71_006_tru64
octonion_test: borland-5.8.2*
powm1_sqrtp1m1_test: borland-5.8.2* hp_cxx-71_006_tru64
quaternion_mult_incl_test: 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.8.2*
sf_cbrt_incl_test: borland-5.8.2*
sf_cos_pi_incl_test: borland-5.8.2*
sf_digamma_incl_test: borland-5.8.2*
sf_ellint_1_incl_test: borland-5.8.2*
sf_ellint_2_incl_test: borland-5.8.2*
sf_ellint_3_incl_test: borland-5.8.2*
sf_ellint_rc_incl_test: borland-5.8.2*
sf_ellint_rd_incl_test: borland-5.8.2*
sf_ellint_rf_incl_test: borland-5.8.2*
sf_ellint_rj_incl_test: borland-5.8.2*
sf_erf_incl_test: borland-5.8.2*
sf_expm1_incl_test: borland-5.8.2*
sf_factorials_incl_test: borland-5.8.2*
sf_fpclassify_incl_test: borland-5.8.2* hp_cxx-71_006_tru64
sf_gamma_incl_test: borland-5.8.2* borland-5.8.2*
sf_hermite_incl_test: borland-5.8.2*
sf_hypot_incl_test: borland-5.8.2*
sf_laguerre_incl_test: borland-5.8.2*
sf_lanczos_incl_test: borland-5.8.2*
sf_legendre_incl_test: borland-5.8.2* borland-5.8.2*
sf_log1p_incl_test: borland-5.8.2*
sf_math_fwd_incl_test: borland-5.8.2*
sf_powm1_incl_test: borland-5.8.2*
sf_sign_incl_test: borland-5.8.2* sun-5.8
sf_sin_pi_incl_test: borland-5.8.2*
sf_sinc_incl_test: borland-5.8.2*
sf_sinhc_incl_test: borland-5.8.2*
sf_sph_harm_incl_test: borland-5.8.2* hp_cxx-71_006_tru64
sf_sqrt1pm1_incl_test: borland-5.8.2*
special_functions_test: borland-5.8.2*
std_real_concept_check: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bernoulli: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64
test_bessel_i: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bessel_j: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bessel_k: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_bessel_y: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_beta: borland-5.8.2* hp_cxx-71_006_tru64
test_beta_dist: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_binomial_coeff: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_binomial_double: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_binomial_float: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_binomial_long_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_binomial_real_concept: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_carlson: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_cauchy: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_cbrt: borland-5.8.2* hp_cxx-71_006_tru64
test_chi_squared: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_classify: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_constants: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_digamma: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_dist_overloads: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ellint_1: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ellint_2: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ellint_3: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_erf: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_error_handling: borland-5.8.2* hp_cxx-71_006_tru64
test_exponential_dist: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_extreme_value: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_factorials: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_find_location: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_find_scale: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_fisher_f: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_gamma: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_gamma_dist: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_hermite: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64
test_ibeta_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_float: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_ab_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_ab_float: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_ab_long_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_ab_real_concept: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_double: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_float: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_long_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_inv_real_concept: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_long_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_ibeta_real_concept: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_igamma: borland-5.8.2* hp_cxx-71_006_tru64 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* hp_cxx-71_006_tru64 sun-5.8
test_igamma_inv_long_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_igamma_inv_real_concept: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_igamma_inva_double: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_igamma_inva_float: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_igamma_inva_long_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_igamma_inva_real_concept: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_instantiate1: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_laguerre: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64
test_legendre: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_lognormal: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_minima: borland-5.8.2* hp_cxx-71_006_tru64
test_negative_binomial_double: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_negative_binomial_float: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_negative_binomial_long_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_negative_binomial_real_concept: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_normal: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_pareto: borland-5.8.2* hp_cxx-71_006_tru64
test_poisson_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_poisson_float: borland-5.8.2* hp_cxx-71_006_tru64
test_poisson_long_double: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_poisson_real_concept: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_policy: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64
test_policy_sf: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_rationals: borland-5.8.2* hp_cxx-71_006_tru64
test_rayleigh: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_remez: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64
test_roots: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_spherical_harmonic: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_students_t: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_tgamma_ratio: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_toms748_solve: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64
test_traits: borland-5.8.2* borland-5.8.2* sun-5.8
test_triangular: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
test_uniform: borland-5.8.2* hp_cxx-71_006_tru64
test_weibull: borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
tools_config_inc_test: borland-5.8.2*
tools_fraction_inc_test: borland-5.8.2*
tools_minima_inc_test: borland-5.8.2*
tools_polynomial_inc_test: borland-5.8.2*
tools_precision_inc_test: borland-5.8.2*
tools_rational_inc_test: borland-5.8.2*
tools_real_cast_inc_test: borland-5.8.2*
tools_remez_inc_test: borland-5.8.2* borland-5.8.2*
tools_roots_inc_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64 sun-5.8
tools_series_inc_test: borland-5.8.2* borland-5.8.2*
tools_solve_inc_test: borland-5.8.2* borland-5.8.2*
tools_stats_inc_test: borland-5.8.2*
tools_test_data_inc_test: borland-5.8.2* borland-5.8.2* sun-5.8
tools_test_inc_test: borland-5.8.2* hp_cxx-71_006_tru64
tools_toms748_inc_test: 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*
|multi_index|
test_basic: hp_cxx-71_006_tru64
test_capacity: hp_cxx-71_006_tru64
test_comparison: hp_cxx-71_006_tru64
test_composite_key: hp_cxx-71_006_tru64
test_conv_iterators: hp_cxx-71_006_tru64
test_copy_assignment: hp_cxx-71_006_tru64
test_hash_ops: hp_cxx-71_006_tru64
test_iterators: hp_cxx-71_006_tru64
test_key_extractors: hp_cxx-71_006_tru64
test_list_ops: hp_cxx-71_006_tru64
test_modifiers: hp_cxx-71_006_tru64
test_mpl_ops: hp_cxx-71_006_tru64
test_observers: hp_cxx-71_006_tru64
test_projection: hp_cxx-71_006_tru64
test_range: hp_cxx-71_006_tru64
test_rearrange: hp_cxx-71_006_tru64
test_safe_mode: hp_cxx-71_006_tru64
test_set_ops: hp_cxx-71_006_tru64
test_special_set_ops: hp_cxx-71_006_tru64
test_update: hp_cxx-71_006_tru64
|numeric/conversion|
bounds_test: hp_cxx-71_006_tru64
converter_test: hp_cxx-71_006_tru64
numeric_cast_test: borland-5.6.4* borland-5.8.2*
traits_test: hp_cxx-71_006_tru64
udt_example_0: hp_cxx-71_006_tru64
udt_support_test: hp_cxx-71_006_tru64
|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 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: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-7.1 msvc-8.0 msvc-8.0
serialization: sun-5.8
|python|
exec: gcc-4.1.2_sunos_i86pc
import_: msvc-7.1 msvc-8.0 msvc-8.0
|random|
random_demo: borland-5.6.4* borland-5.8.2*
random_test: hp_cxx-71_006_tru64
|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* hp_cxx-71_006_tru64
captures_example: borland-5.6.4* borland-5.8.2*
captures_test: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
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* hp_cxx-71_006_tru64
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* hp_cxx-71_006_tru64
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_regress: hp_cxx-71_006_tru64
regex_regress_threaded: hp_cxx-71_006_tru64
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* hp_cxx-71_006_tru64
test_grep: borland-5.6.4* borland-5.8.2*
unicode_iterator_test: borland-5.8.2* hp_cxx-71_006_tru64
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|
bug_000008: msvc-8.0
grammar_mt_tests: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
mix_and_match_trees: sun-5.8
owi_mt_tests: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64 msvc-8.0
scoped_lock_tests: msvc-8.0
scoped_lock_tests_debug: 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*
system_error_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|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* msvc-8.0
test_barrier_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-8.0
test_condition: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* msvc-8.0
test_condition_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* msvc-8.0
test_lock_concept: borland-5.6.4* borland-5.8.2* msvc-8.0
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* msvc-8.0
test_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* msvc-8.0
test_once: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-8.0
test_once_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-8.0
test_shared_mutex: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0 msvc-8.0
test_shared_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc msvc-7.1 msvc-8.0
test_thread: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-8.0
test_thread_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-8.0
test_tss: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* msvc-8.0
test_tss_lib: msvc-8.0
test_xtime: borland-5.6.4* borland-5.8.2* msvc-8.0
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|
run_complex_overloads: hp_cxx-71_006_tru64
run_random: hp_cxx-71_006_tru64
std_run_complex_overloads: hp_cxx-71_006_tru64
std_run_random: hp_cxx-71_006_tru64
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* 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* borland-5.8.2* sun-5.8
experimental_3_emulation: borland-5.8.2* borland-5.8.2* msvc-8.0 sun-5.8
experimental_3_native: msvc-8.0
experimental_4_emulation: borland-5.8.2* 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|
test_re2c_lexer: msvc-8.0
test_slex_lexer: msvc-8.0
testwave_dll: msvc-8.0
1
0
Jeff,
Can you tell if this fix is going to be included in 1.35? The problem is
that to_iso_string() uses locale separator to make year, i.e.
[2,002-Jan-01 01:02:03]
There are more details -
http://lists.boost.org/Archives/boost/2007/03/117276.php
Thanks,
Andrew
2
1
Boost.Test update: run by name, debug interfaces, new tools and more
by Gennadiy Rozental 26 Oct '07
by Gennadiy Rozental 26 Oct '07
26 Oct '07
Hi,
Last couple weeks I spent incorporating new features into Boost.Test trunk.
Some of these were sitting on my local disk for quite some time, but it's
finally there. There are still number of features/request in pipeline to be
addressed, but I plan to concentrate primarily on docs update now. BTW they
are progressing and in much better shape now. I might need to work to
include all the fixes required to build it into boostbook. I plan to put
beta on my site soonish. Following are more or less detailed release notes
for all the changes. Any comments are welcome as usual.
Regards,
Gennadiy
=======================================================
Release notes:
=======================================================
I. New debug interfaces
In this update I made an effort to introduce portable interface for
communication with debugger and other debug facilities. The interface is
defined as set of free functions along with some helper structures. I left
out couple functions related to the portable stack dump/stack walk
interface, since it's not completely ready yet and I am do not have enough
time at the moment to finish it.
New interface consists of the following functions:
---------
bool under_debugger();
Detects if program is running under debugger
---------
void debugger_break();
Causes program to break execution in debugger at call point
---------
bool attach_debugger( bool break_or_continue = true );
Attaches debugger to the current process
---------
void detect_memory_leaks( bool on_off );
Switches on/off memory leaks detection
---------
void break_memory_alloc( long mem_alloc_order_num );
Causes program to break execution in debugger at specific allocation point
---------
I've made an effort to implement these interface for number of available
configurations/debuggers for platforms I had an access to:NT, Linux,
Solaris. There are still a lot of work to make these interfaces available on
other systems. These is also interfaces to add support for additional
debuggers, setup default debuggers and configure some parameters of existing
implementation.
>From usability standpoint there is new command line argument available for
UTF users: --auto_start_dbg=<yes|no|debugger_name>
Default value is no. If set to yes, in case of system error (sigsegv for
example) the program will try to attach default debugger defined for the
toolset and stop at fault location. If set to the different value this value
is treated as debugger id (one of the predefined set of supported debuggers)
and Boost.Test will try to use this debugger. For
example --auto_start_dbg=dbx-ddd causes ddd with dbx to be used,
while --auto_start_dbg=gdb-xterm will open new xterm window and attach gdb.
Some of the functions are implemented only for specific platforms for now.
But the main goal of this exercise is to define portable interfaces.
II. Execution monitor rework
The execution monitor implementation is rewritten almost completely. Some
new features introduces, some old done differently.
1. windows SEH handling
Windows SEH handling changed completely. Instead of seh translator execution
monitor relies on custom exception filters and double set of __try/__catch
constructs. There some additional tricks in place to make it work more
reliably.
2. Signal handling on *nix
Signal handling is made more consistent and covers more signals. An
alternative stack is used by default signal handler by default, while there
is an option to avoid it (--use_alt_stack=no for UTF users)
3. New portable debug interfaces used in place of platform specific calls.
4. Error reporting is enhanced both on windows and *nix to provide more
information about error cause and location. For example these lines
int* p = (int*)0x01;
BOOST_CHECK( *p == 0 );
will now produce
"fatal error in "free_test_function": memory access violation occurred at
address 0x00000001, while attempting to read inaccessible data"
instead of
"fatal error in "free_test_function": memory access violation"
Similar enhancements made for different types of system errors.
5. Handling for invalid parameter error produced by VC 8.0 runtime
introduced
6. Floating point exceptions detection is introduced.
For windows based configurations you can tell the execution monitor to
detect floating point errors like underflow,overflow,divide by zero and
others. It's disabled by default. UTF users can enable it
using --detect_fp_exceptions=yes
III. Significant framework updates
1. run by name is finally there
UTF users can mow specify test unit(s) to run using command line argument.
Use
<test-module> --run_test=<test to run>
Test to run specifies which test cases/test suites to execute. It specified
in a form a/b/c, where a,b and c are filters for corresponding levels of
test tree. '*' can be used at the beginning, at the end and as the level
filter itself. ',' is used to create lists. Here couple concrete examples:
--run_test=test1 - runs test case or test suite test1 that resides in master
test suite.
--run_test=test1,test2 - runs test case or test suite test1 and test case or
test suite test2 that resides in master test suite.
--run_test=s1/test1 - runs test case or test suite test1 that resides in
test suite s1 that resides in master test suite.
--run_test=s1*/test1 - runs test case or test suite test1 that resides in
test suites with name stating with s1 and that resides in master test suite.
--run_test=*s1/test1 - runs test case or test suite test1 that resides in
test suites with name ending with s1 and that resides in master test
--run_test=*/test1* - runs any test unit with name starting with test1 that
resides in any test suite that resides in master test
--run_test=* - runs all test units
Note
--run_test=a/* is equivalent to --runtest=a
2. New tools in toolbox.
Responding to the several requests I've implemented 5 new tools:
BOOST_CHECK_NE(a,b)
BOOST_CHECK_LT(a,b)
BOOST_CHECK_LE(a,b)
BOOST_CHECK_GT(a,b)
BOOST_CHECK_GE(a,b)
Floating point tools update unfortunately did not make a cut.
3. Test suite auto registration modified to allow c++ namespace like
behavior.
It's now possible to restart the test suites and defines the same test
suites in different test file, effectively making test suites similar to the
C++ namespaces. for example
BOOST_AUTO_TEST_SUITE(s1)
BOOST_AUTO_TEST_CASE(t1)
{
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE(s1)
BOOST_AUTO_TEST_CASE(t2)
{
}
BOOST_AUTO_TEST_SUITE_END()
construct a test tree with single test suite s1 containing 2 test cases t1
and t2.
4. Support for expected failures in test cases with automated registration
is reworked completely. It now allows to be used within auto-test-suites.
5. unit_test::framework API changed to return non const references to the
test units to allow post creation modifications. It now possible to modify
test tree at runtime. In addition test_suite::remove interface is introduced
to allow remove test units from the test suite if necessary.
6. init_unit_test_suite function invocation is now guarded, so any
exceptions produced by it doesn't cause UTF to report internal failure but
show correct cause of setup failure.
VI. Minor modifications and fixed
* Use portable message mechanism in execution monitor
* Interface to access results reporter stream provided
* Bug in output_test_stream constructor error generation fixed
* Test start and finish messages disabled if log level is set to nothing
* Test module initialization error message is redirected into result
reporter stream
* New message is added to report no assertion occurred in a test case
* Framework misuse guard is introduced to prevent usage of testing tools
before framework is initialized (for example from within init function)
2
2
26 Oct '07
I'm writing an application that runs on both Win32 (vs 2005) and Linux
(gcc). I was curious what the performance penalty is for a scenario like
this:
Foo1()
{
recursive_mutex::scoped_lock lock(mutex); // acquire initial mutex
lock
Foo2();
...
}
Foo2()
{
recursive_mutex::scoped_lock lock(mutex); // increment lock count
...
}
Relatively speaking, how much time does it cost to
1) Locking the mutex initially and increment the lock count
Vs
2) Determine that a mutex is already locked by the thread and just increment
the lock count?
I'm also curious how much faster mutex is over recursive_mutex for both
platforms. If anybody has done performance profiling or just knows in
general the different mutex scenario performance costs, I'd greatly
appreciate any info. :)
Thanks very much,
Scott
2
1
+main boost list to see if anyone there has an answer...
On Mon, Oct 22, 2007 at 04:59:49PM +0100, Graham Bennett wrote:
> Hi all,
>
> I'm coming across Boost.Build V2 for the first time while working on
> building Boost 1.34.1, upgrading from 1.33.1.
>
> I currently build boost from a driver makefile that invokes bjam with
> the correct options for each platform. I do this to make my life easier
> since I have some easy ways to determine things like installation paths,
> include paths, compiler flags and preprocessor defines from within my
> driver makefile in a platform-independant way.
>
> It seems as though in V2 there has been a move away from passing
> configuration options via the command line, and the way that command
> line arguments is parsed means that adding something like
> "include=/foo/bar" (which was my initial guess) will end up as three
> different properties since it's split on the slashes, leading to errors
> about include having no value.
>
> While in general I do think specifying options in files rather than on
> the command line is to be encouraged in order to promote reproducible
> builds, I do think it's important to have a way of overriding things on
> a per-invocation basis. In my case I already have a way of achieving
> reproducible builds via my driver makefile system, so having a way of
> passing these options down to bjam at invocation is quite important.
>
> So before I go any further I'd like to get confirmation that:
>
> - there's no way to pass this kind of option to bjam from the command
> line anymore
>
> - is there any way to pass this kind of information via the environment
> rather than the command line?
>
> - the recommended way for me to configure boost from my driver makefile
> would be to generate a separate jam file that bjam would then include
> for each platform. Is this best done by generating site-config.jam?
>
> cheers,
>
> Graham
>
> --
> Graham Bennett
Graham
--
Graham Bennett
1
0