Boost
Threads by month
- ----- 2025 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 33145 discussions
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
There are some more errors from the revised Boost.Test code when building
with /D"_UNICODE" /D"UNICODE": which is the default behaviour for new
projects created with the VC8 IDE. The errors are:
c:\data\boost\boost\trunk\boost\test\impl\debug.ipp(794) : error C2664:
'LONG (HKEY,LPCTSTR,PHKEY)' : cannot convert parameter 2 from 'const char
[53]' to 'LPCTSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast,
C-style cast or function-style cast
c:\data\boost\boost\trunk\boost\test\impl\debug.ipp(807) : error C2664:
'LONG (HKEY,LPTSTR,LPDWORD,LPDWORD,LPBYTE,LPDWORD)' : cannot convert
parameter 2 from 'const char [9]' to 'LPTSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast,
C-style cast or function-style cast
c:\data\boost\boost\trunk\boost\test\impl\debug.ipp(807) : error C2664:
'LONG (HKEY,LPTSTR,LPDWORD,LPDWORD,LPBYTE,LPDWORD)' : cannot convert
parameter 1 from 'LPDWORD' to 'HKEY'
Types pointed to are unrelated; conversion requires reinterpret_cast,
C-style cast or function-style cast
c:\data\boost\boost\trunk\boost\test\impl\debug.ipp(843) : error C2664:
'CreateProcessW' : cannot convert parameter 2 from 'char [200]' to 'LPWSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast,
C-style cast or function-style cast
Which can likely be easily solved by adding an "A" suffix to the Win32 API
calls. Whether these are all the errors, or just the first ones to get
reported is another matter...
John.
2
1
Hi,
I'm creating a GUI library (still in pre-alpha) using the named
parameter library for the create function.
It has a interface like this:
wnd_lock<frame_window> w = create<frame_window>( _driver = gtk
, _pos = std::make_pair(20, 20), _size = std::make_pair(600, 400) );
Until here everything is alright.
But, for some controls, we must have extended keywords:
wnd_lock<text_box> text = create<text_box>( _parent = w, _pos =
std::make_pair(0, 0)
, text_box::_multi_line = true );
Is it achievable?
Thanks in advance,
--
Felipe Magno de Almeida
2
4
Hi,
I have written a refinement on boost::mutex that allows for it to be
interrupted while waiting to acquire the mutex by altering a predicate
(once the mutex is acquired, it acts like a regular mutex).
Here is the code:
http://www.neuromancy.net/fisheye/browse/mantra/trunk/Mantra-I/mantra/utils…
It has been fully unit tested. The idea is simple, using an
interruptable_mutex operates exactly like a boost::mutex normally, so
boost::interruptable_mutex mtx;
{
boost::interruptable_mutex::scoped_lock sl(mtx);
...
}
All fine.
However, if you want the ability to be able to interrupt the mutex while
blocked waiting to acquire, you could do:
boost::interruptable_mutex mtx;
boost::interruptable_pred pred(mtx);
{
boost::interruptable_pred::scoped_lock sl(pred);
...
}
Then in another thread, I could call:
pred(true);
and it will throw an exception in the thread waiting to acquire the
scoped_lock. This works when waiting on reacquisition of a lock after
a condition just as well, eg:
{
boost::interruptable_pred::scoped_lock sl(pred);
...
boost::condition cond;
cond.wait(sl);
// Assuming we got signaled, we would reacquire sl, however if
// multiple threads were trying to acquire sl, we could block
// waiting for the lock re-acquisition, that is breakable.
}
In addition to this, the implementation I have allows you to register
a callback function that will be invoked in place of just throwing an
exception.
The reason the interruptable_pred is a separate class is that you may
want multiple predicates associated with the same lock. For example
a situation where the lock is for a queue, and you are pushing multiple
messages to that queue. Each message would have a interruptable_pred
created for it, but constructed with the same interruptable_mutex, the
one guarding the queue. This way you can interrupt the lock acquire
for a single message only without interrupting others also waiting.
As with all my submissions, do with it as you please. I have unit
tested it, and it works here. I just don't believe this should be
submitted as a separate component, but more folded into boost::thread.
PreZ :)
2
2
Boost regression test failures
Report time: 2007-10-25T10:36:50Z
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
hp_cxx-71_006_tru64
3887 failures in 65 libraries (339 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 (4)
assign (0 of 16 failures are from non-broken platforms)
bimap (23 of 167 failures are from non-broken platforms)
bind (0 of 46 failures are from non-broken platforms)
circular_buffer (0 of 8 failures are from non-broken platforms)
concept_check (5 of 21 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 (1 of 10 failures are from non-broken platforms)
filesystem (2 of 26 failures are from non-broken platforms)
foreach (3 of 28 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 (56 of 598 failures are from non-broken platforms)
gil (3 of 9 failures are from non-broken platforms)
graph (8 of 14 failures are from non-broken platforms)
integer (0 of 6 failures are from non-broken platforms)
interprocess (64 of 223 failures are from non-broken platforms)
intrusive (10 of 12 failures are from non-broken platforms)
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 (78 of 387 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 (1 of 13 failures are from non-broken platforms)
parameter (0 of 27 failures are from non-broken platforms)
pool (0 of 2 failures are from non-broken platforms)
preprocessor (0 of 28 failures are from non-broken platforms)
program_options (0 of 28 failures are from non-broken platforms)
property_map (0 of 4 failures are from non-broken platforms)
ptr_container (7 of 9 failures are from non-broken platforms)
python (4)
random (0 of 2 failures are from non-broken platforms)
range (8 of 32 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 (10 of 963 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 (3)
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 236 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 (27 of 50 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
ip_unicast: acc
ip_unicast_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* 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* 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* 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* 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* 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* 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: acc borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* msvc-8.0
|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* hp_cxx-71_006_tru64* sun-5.8
adapt_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
all: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
any: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* 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* hp_cxx-71_006_tru64* sun-5.8
as_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
as_set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
as_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
back_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
boost_tuple: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
clear: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
cons: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
count: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
count_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* 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
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* hp_cxx-71_006_tru64* sun-5.8
erase_key: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
filter: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
filter_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* 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* 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* hp_cxx-71_006_tru64* sun-5.8
find_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
fold: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
for_each: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
front_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
fused: 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
fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
insert: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
insert_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
invoke: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
invoke_function_object: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
invoke_procedure: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
io: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
join: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
joint_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
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* hp_cxx-71_006_tru64*
make_fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
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* hp_cxx-71_006_tru64*
make_unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
map_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
none: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
pop_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
pop_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
push_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
push_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
remove: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
remove_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
repetitive_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
replace: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
replace_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
reverse: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
reverse_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* 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* hp_cxx-71_006_tru64* sun-5.8
swap: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
transform: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
transform_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_element: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
unfused_typed: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* 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* hp_cxx-71_006_tru64*
vector_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
vector_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
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* hp_cxx-71_006_tru64*
vector_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
zip: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
zip2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
zip_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
zip_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
zip_view2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
zip_view_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* 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* 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* hp_cxx-71_006_tru64*
max_flow_test: acc hp_cxx-71_006_tru64* 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* 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: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
adaptive_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
allocexcept_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
cached_adaptive_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
cached_node_allocator_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
data_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
deque_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_adaptive_pool: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_allocator: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_conditionA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_conditionB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_mutexA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_mutexB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_semaphoreA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_semaphoreB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_upgradable_mutexA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_upgradable_mutexB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_bufferstream: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_cached_adaptive_pool: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_cached_node_allocator: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_cont: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_contA: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_contB: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_intrusive: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_ipc_messageA: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_ipc_messageB: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_aligned_allocation: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_allocation_command: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_construction_info: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_external_buffer: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_heap_memory: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
doc_managed_mapped_file: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
doc_managed_multiple_allocation: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_raw_allocation: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_map: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_message_queueA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_message_queueB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_move_containers: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_named_allocA: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_named_allocB: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_node_allocator: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_offset_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_private_adaptive_pool: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_private_node_allocator: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_scoped_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_shared_memory: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_shared_memory2: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_shared_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
doc_shared_ptr_explicit: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_unique_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_vectorstream: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_where_allocate: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
flat_map_index_allocation_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
flat_tree_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
intrusive_ptr_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
iset_index_allocation_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
iunordered_set_index_allocation_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
list_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
managed_mapped_file_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
managed_shared_memory_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
map_index_allocation_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
mapped_file_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
memory_algorithm_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
message_queue_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_condition_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_mutex_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_recursive_mutex_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_semaphore_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_upgradable_mutex_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
node_allocator_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
node_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
null_index_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
private_adaptive_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
private_node_allocator_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
shared_memory_mapping_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
shared_memory_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
shared_ptr_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
slist_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
string_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
tree_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
unique_ptr_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
user_buffer_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
vector_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
|intrusive|
default_hook_test: gcc-4.1.2_sunos_i86pc
doc_assoc_optimized_code: gcc-4.1.2_sunos_i86pc
doc_offset_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_set: gcc-4.1.2_sunos_i86pc
external_value_traits_test: gcc-4.1.2_sunos_i86pc
make_functions_test: gcc-4.1.2_sunos_i86pc
multiset_test: gcc-4.1.2_sunos_i86pc
set_test: gcc-4.1.2_sunos_i86pc
stateful_value_traits_test: gcc-4.1.2_sunos_i86pc
virtual_base_test: gcc-4.1.2_sunos_i86pc
|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.8.2*
dist_beta_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
dist_binomial_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
dist_cauchy_incl_test: borland-5.8.2* borland-5.8.2*
dist_chi_squared_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
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* hp_cxx-71_006_tru64*
dist_gamma_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
dist_lognormal_incl_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
dist_neg_binom_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
dist_normal_incl_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
dist_poisson_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
dist_students_t_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
dist_triangular_incl_test: borland-5.8.2*
dist_uniform_incl_test: borland-5.8.2*
dist_weibull_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
distribution_concept_check: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
octonion_test: borland-5.8.2*
powm1_sqrtp1m1_test: borland-5.8.2*
quaternion_mult_incl_test: borland-5.8.2*
quaternion_test: borland-5.8.2*
sf_bessel_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_beta_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_binomial_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_cbrt_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
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* hp_cxx-71_006_tru64*
sf_expm1_incl_test: borland-5.8.2*
sf_factorials_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_fpclassify_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
sf_gamma_incl_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
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* hp_cxx-71_006_tru64*
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* 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* hp_cxx-71_006_tru64* sun-5.8
test_bernoulli: borland-5.8.2* borland-5.8.2*
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* 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* 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* sun-5.8
test_cauchy: borland-5.8.2* borland-5.8.2* 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* sun-5.8
test_constants: borland-5.8.2* sun-5.8
test_digamma: borland-5.8.2* 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* sun-5.8
test_ellint_2: borland-5.8.2* sun-5.8
test_ellint_3: borland-5.8.2* borland-5.8.2* sun-5.8
test_erf: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_error_handling: borland-5.8.2*
test_exponential_dist: borland-5.8.2* borland-5.8.2* sun-5.8
test_extreme_value: borland-5.8.2* 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* 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*
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* 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* 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* 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* 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* 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* 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* hp_cxx-71_006_tru64* sun-5.8
test_laguerre: borland-5.8.2* borland-5.8.2*
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*
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*
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*
test_rayleigh: borland-5.8.2* borland-5.8.2* sun-5.8
test_remez: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_roots: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* 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* hp_cxx-71_006_tru64* sun-5.8
test_triangular: borland-5.8.2* sun-5.8
test_uniform: borland-5.8.2*
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* hp_cxx-71_006_tru64*
tools_roots_inc_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* 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* hp_cxx-71_006_tru64* sun-5.8
tools_test_inc_test: borland-5.8.2* hp_cxx-71_006_tru64* 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*
|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* 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* hp_cxx-71_006_tru64* msvc-7.1 msvc-8.0 msvc-8.0
serialization: gcc-4.1.2_sunos_i86pc 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* hp_cxx-71_006_tru64* 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* hp_cxx-71_006_tru64* 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* 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* 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* 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* 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* 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* 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* 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* 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* 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* 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: msvc-8.0
mix_and_match_trees: sun-5.8
owi_mt_tests: 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_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* hp_cxx-71_006_tru64*
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* hp_cxx-71_006_tru64*
std_test_tuple: borland-5.8.2* hp_cxx-71_006_tru64*
std_test_tuple_tricky: hp_cxx-71_006_tru64* 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* hp_cxx-71_006_tru64*
test_tuple: borland-5.8.2* hp_cxx-71_006_tru64*
test_tuple_tricky: hp_cxx-71_006_tru64* 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* hp_cxx-71_006_tru64*
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: acc 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
experimental_1_native: gcc-4.1.2_sunos_i86pc msvc-7.1 msvc-8.0 msvc-8.0
experimental_2_emulation: acc borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc sun-5.8
experimental_2_native: gcc-4.1.2_sunos_i86pc
experimental_3_emulation: acc borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc msvc-8.0 msvc-8.0 sun-5.8
experimental_3_native: gcc-4.1.2_sunos_i86pc msvc-8.0 msvc-8.0
experimental_4_emulation: acc borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc sun-5.8
experimental_4_native: gcc-4.1.2_sunos_i86pc
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
Interprocess causes numerous "debug assertions" on Windows 64-bit platform.
Since nobody is clicking on the dialog boxes and the process will only be
killed by bjam after 5mins (necessary for some of the libraries), this
results in unbearable long testing times. Please either
1. Disable tests on Win64 or
2. Change the CRT report mode not to show the diaglog box.
Thanks,
Sean
5
12
Hello all,
I have spent the last few weeks locked away in a small, dark room so
that I could finally get the 0.3.8 release out of the way. As the 1.35
release of boost is coming up soon, I am looking to nail as many bugs as
possible beforehand. Bug reports are appreciated.
You can download from here:
http://sourceforge.net/project/showfiles.php?group_id=122478&package_id=134…
Docs here:
http://asio.sourceforge.net/boost_asio_0_3_8/libs/asio/doc/
I'll attend to the backlog of emails once I have recovered from the
ordeal. Thanks for your patience.
Cheers,
Chris
2
1
Dear all,
I have for the second time tried to compile a quickbook version of the
docs for Boost.Range. Without luck. Is there an idiot proof procedure
for getting this loooong toolchain to work on windows?
My current error (after using the automatic install script) is:
$ bjam --v2
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).
...patience...
...found 1052 targets...
...updating 2 targets...
xslt-xsltproc
..\..\..\bin.v2\libs\range\doc\msvc-8.0\debug\threading-multi\boos
t_range.docbook
The system cannot find the path specified.
set XML_CATALOG_FILES=..\..\..\bin.v2/boostbook_catalog.xml
"/bin/xsltproc" --stringparam chunk.first.sections "7" --stringparam
generate.s
ection.toc.level "4" --stringparam toc.section.depth "10" --xinclude -o
"..\..\.
.\bin.v2\libs\range\doc\msvc-8.0\debug\threading-multi\boost_range.docbook"
"d:\
boost\trunk\tools\boostbook\xsl\docbook.xsl"
"..\..\..\bin.v2\libs\range\doc\msv
c-8.0\debug\threading-multi\boost_range.xml"
I'm getting kinda desparate here ... perhaps I should simply commit the
docs and let them be generated on a test server. Do we have such a
functionality in place?
Thanks in advance
-Thorsten
6
17
[ 225 open bugs today, 228 last report (Monday) ]
[ Back home after being evacuated... ]
If you are maintaining a library, and have not logged into the trac system
at <http://svn.boost.org/trac/boost/>, please do so ASAP. Until you do that,
no tickets can be assigned to you, and will remain under "None".
Instructions on working with tickets can be found at:
<http://svn.boost.org/trac/boost/wiki/TicketWorkflow>
and a mapping of user names to "real names" can be found at:
<http://svn.boost.org/trac/boost/report/16>
Bug summary
18 ramey
16 dgregor
15 djowel
15 az_sw_dude
14 grafik
13 None
12 doug_gregor
11 turkanis
10 rogeeff
8 dave
7 jsiek
7 anthonyw
7 agurtovoy
6 vladimir_prus
6 bemandawes
5 witt
5 samuel_krempp
4 shammah
4 nesotto
4 johnmaddock
4 fcacciola
3 pdimov
3 jbandela
3 igaztanaga
3 danielw
2 urzuga
2 t_schwinger
2 nasonov
2 jmaurer
2 hubert_holin
2 hkaiser
2 ebf
1 speedsnail
1 samuel_k
1 pavol_droba
1 kaalus
1 guwi17
1 dlwalker
1 aaron_windsor
1 <Blank>
<Blank> 1307 [lambda] invalid boostbook
None 1048 Spirit returns full = false in 1.34 if there is trailing
spaces in input
None 1068 Mersenne twister disables streaming for Visual C++
None 1094 Finding the correct library to link (feature request for
pkg-config support)h
None 1187 bcp copy not needed files
None 1222 lambda::ret<T> should declare result_type.
None 1247 Typos in "boost/random/additive_combine.hpp"_ lines 68-69
None 1252 [pool] severe overhead with unaligned sizes.
None 1270 uniform_smallint doesn't compile with lagged_fibonacci
random number generators
None 1291 config.hpp fails to compile with gcc -Wundef
None 1311 Can't call base members on derived object in unit_test
None 1342 dylib library names broken in Mac OS X
None 960 [random] lognormal_distribution problem
None 991 [pool]
aaron_windsor 778 top-level configure is broken
agurtovoy 1001 gcc 4.1.2 segfaults on mpl/test/apply.cpp
agurtovoy 1051 MPL header ordering triggers bug
agurtovoy 1099 unable to iterate through a "non-explicitly-declared" mpl::set
agurtovoy 1215 Boost 1.34.1_ mpl: Wrong workaround detection using
MinGW32 (or.hpp_ line #33)
agurtovoy 1317 has_xxx randomly broken in msvc
agurtovoy 588 mpl::remove compile error with gcc 4.1.0
agurtovoy 640 documentation mistake
anthonyw 1154 tss destruction segfaults in conjunction with dlopen/dlclose
anthonyw 1168 [thread] tss crashes randomly
anthonyw 1226 macro TEXT() in GetProcAddress()
anthonyw 1268 xtime_cmp changes to deal with overflow were reverted
anthonyw 1323 Assertion Error during cleanup after running out of
thread resources
anthonyw 876 xtime documentation incomplete
anthonyw 881 errors when build with Apache stdcxx
az_sw_dude 1028 typo in boost header: date_time/time_defs.hpp
az_sw_dude 1078 from_iso_string cannot read the output from to_iso_string
az_sw_dude 1098 Urgent libboost-date-time1.33.1 : bugs on ia64 ?
az_sw_dude 1147 date_time library contains global #define ERROR
az_sw_dude 1160 warning: month_format shadows a member of this
az_sw_dude 1162 warning: ticks shadows a member of this
az_sw_dude 1289 posix_time::time_facet forgets to pass a_ref argument
to base class
az_sw_dude 1299 change in typedef stringstream_type in
format_date_parser.hpp causing compilation error
az_sw_dude 1306 invalid docbook in date_period.xml
az_sw_dude 287 wrong usage of ios_base::narrow
az_sw_dude 316 date_time type conversion warning
az_sw_dude 604 from_ftime incorrectly processes FILETIME filled with zeros
az_sw_dude 642 operator<< for gregorian::date_duration not found
az_sw_dude 889 Insane Dependencies
az_sw_dude 890 date_time library supports only the current dst rule
bemandawes 1230 mbstate uninitialized
bemandawes 1312 boost::filesystem link error on mac os x
bemandawes 1378 filesystem path invalid name for hidden files (LINUX)
bemandawes 559 linker error mingw 3.4.5
bemandawes 752 directory_iterator doesn't work with catch
bemandawes 897 exists() throws exeption on existing but locked file on wind
danielw 1044 Argument pack inaccessable in a functions return type
danielw 1054 Parameter takes an "infinite" amount of time to compile
with the Intel compiler.
danielw 1097 keyword.hpp generates many warnings C4180: qualifier
applied to function type has no meaning; ignored
dave 1010 linking boost.python on freebsd
dave 1019 iterator_facade::pointer should be the return type of
operator-> (DR 445)
dave 1085 Python rules for compiling in Mac OS X
dave 1096 Tutorial needs updating for BBv2
dave 1179 [boost.python] can not export a union in VC2005sp1
dave 1181 [boost.python] can modify enum value
dave 865 Use of C++0x keyword as identifier
dave 910 gcc strict-aliasing problems with python
dgregor 1002 [iostreams] close_impl<closable_tag> does not comply with spec
dgregor 1003 [iostreams] copy-paste error in typedefs for wchar
multichar_filters
dgregor 1011 amd64: #error Boost.Numeric.Interval: Please specify
rounding control mechanism.
dgregor 1139 [iostreams] Regex filter segfaults when zero matches found
dgregor 1140 boost::iostreams linked_streambuf bug
dgregor 1149 Minor doc error in basic_null_device
dgregor 1164 Floyd Warshall broken with unsigned edge weights
dgregor 1185 iostreams::direct_streambuf<T_Tr>::is_open always
returns false if output iterator is not null
dgregor 1192 [boostbook] problem when two files have the same name
dgregor 1199 configure doesn't work with path containing whitespaces (MacOS X)
dgregor 1232 mapped_file_source::is_open() is broken under windows
dgregor 1310 [result_of] const-qualified function pointer doesn't work
dgregor 1326 Unable to check graph isomorphism using LEDA adapter
dgregor 556 Bundled graph properties
dgregor 732 Johnson All-Pairs needs better "no path" information
dgregor 736 Const correctness violation
djowel 1170 Emit Warnings instead of # symbols in the syntax highlighter
djowel 1171 Quickbook title output
djowel 1172 non-utf
djowel 1176 Space after inline code
djowel 1206 Escaping from within code?
djowel 1273 CR+LF newlines in position_iterator
djowel 1276 spirit problem with _GLIBCXX_DEBUG
djowel 1277 Closing section like [pre with } causes Quickbok to crash
djowel 1280 sections in imported source files get put inside <para>
elements in docbook output
djowel 1281 Quickbook produces invalid BoostBook/DocBook XML
djowel 1324 tuple should have a swap() that operates element-by-element
djowel 1328 boost::spirit concurrency gap
djowel 241 Miss " = ParserT()"
djowel 314 spirit insert_key_actor.hpp
djowel 664 crash in boost::spirit::parse
dlwalker 613 boost/crc.hpp uses non-standard conforming syntax
doug_gregor 1021 [Graph][reverse_graph] Problem using reverse_graph
adapter with an adapted user defined graph
doug_gregor 1076 compile error: disconnecting struct with
operator()() doesn't work in VS2005 SP1
doug_gregor 375 LEDA graph adaptors do not handle hidden nodes properly
doug_gregor 402 random_vertex/random_edge are unnecessarily inefficient
doug_gregor 403 Document copy_component
doug_gregor 447 reverse_graph and constness of property maps
doug_gregor 708 Dijkstra no_init version should not require VertexListGraph
doug_gregor 733 Numbered headers don't work with "preferred" syntax
doug_gregor 735 Fruchterman-Reingold grid performance can be improved
doug_gregor 738 Memory leaks with signal::connect?
doug_gregor 829 Implicit graph not implement
doug_gregor 852 Problem with Boost and GCC 4.1
ebf 965 [doc] boost::variant tutorial - final example uses v1_v2
should be seq1_seq2
ebf 993 Variant should use least common multiple of alignments_
rather than maximum
fcacciola 1217 value_initialized leaves data uninitialized_ when using MSVC
fcacciola 1301 copy-initialization from const-qualified object doesn't work
fcacciola 617 Numeric Conversion Documentation minor bug
fcacciola 818 No zero-argument in_place()
grafik 1023 inspect
grafik 1041 Cygwin requires PATH setting.
grafik 1062 Cygwin install stage fails with combination of patches
grafik 1146 KAI Referenced in compiler status acknowledgements
grafik 1233 Boost website still refers to CVS
grafik 1244 Broken links to unit test examples
grafik 1318 http links have gone bad in boost.test documentation
grafik 1322 trac rejects patch attachment as spam
grafik 546 boost.build needs fixes for HP/UX
grafik 616 Boost Jam_ and non english directorys
grafik 896 <native-wchar_t>off does not work when build with vc-8.0
grafik 959 linking fails when Boost is compiled with STLport 5.1.* on
Linux (names mismatch)
grafik 977 bjam crashes when compiled with gcc 4.2
grafik 986 Problem building Python modules on boost 1.34.0
guwi17 1237 Resizing symmetric matrices
hkaiser 1077 Spirit integer parser does not always detect integer overflow
hkaiser 1079 boost-1.34.0 fails to compile. concept checks not satisfied.
hubert_holin 162 Cannot compile octonion_test.cpp because of bug in sinc.hpp
hubert_holin 647 octonion documentation bug
igaztanaga 1080 boost::interprocess win32 global file mapping issue
igaztanaga 1210 interprocess::barrier hangs during second use under
linux (boost 1.33.1)
igaztanaga 1231 interprocess_condition (emulated) hangs after notify_all().
jbandela 283 Compiler error for tokenizer on Solaris
jbandela 501 token_iterator::at_end() result is inversed
jbandela 665 bug in char_separator
jmaurer 351 Diff in state of mersenne_twister gen between GCC3.41 & CW9
jmaurer 819 uniform_int<> with type's maximum availaible range error
johnmaddock 1081 Empty string rejected as perl-style regex
johnmaddock 1083 boost_regex 1.34.0 uses ICU library without linking to it
johnmaddock 1148 boost_1_34_1 regex library compile failure on aix with xlv
johnmaddock 1314 Using SSE-intrinsics in VC8 causes static assert in
type_with_alignment.hpp
jsiek 416 Spelling of Edmonds-Karp-Algorithm
jsiek 575 Calling subgraph::global_to_local on a root graph
jsiek 636 strange compiling problem for transitive_closure
jsiek 813 concept_check.hpp unused variable warning
jsiek 815 remove_edge core dumps on self-circle
jsiek 875 No iterator based constructor for adjacency_matrix
jsiek 900 graphml reader namespace handling is broken
kaalus 1184 property_tree assignment (operator) bug
nasonov 1220 lexical_cast requires RTTI
nasonov 754 boost::any - typeid comparison across shared boundaries
nesotto 1145 Small bugs in Boost.Range documentation
nesotto 1284 [range] sub_range assignment issue
nesotto 1327 iterator value_type possibly cv-qualified
nesotto 723 local_time_facet error in VS2005 Win2003
pavol_droba 1152 rle_example fails
pdimov 1106 shared_ptr<T> should not convert to shared_ptr<U> when T*
doesn't convert to U*
pdimov 1108 shared_ptr does not compile under g++ with -fno-rtti
pdimov 997 error in boost::bind doc
ramey 1036 assert failure in oserializer.hpp:418
ramey 1038 "<" and ">" should be excaped in xml_oarchive
ramey 1086 Serialization of weak_ptr produces invalid XML
ramey 1089 missing boost::serialization::make_nvp in pointer container library
ramey 1121 xml_archive_exception is missing seperate header file_ and
documentation mismatch
ramey 1137 Virtual destructor is missing
ramey 1141 Dangerious operator<< for wostream
ramey 1142 boost/serialization/optional doesn't include necessary header
ramey 1223 boost::serialization chokes on correcly formatted empty XML element
ramey 1267 Assertion `new_cid == cid' failed in basic_iarchive
ramey 1285 [serialization] problem when including shared_ptr_132.hpp
ramey 1286 Missing/Incorrect dllimport/dllexport directives prevent
Windows DLLs from building
ramey 1290 Serialization export.hpp (or type_info_implementation.hpp)
is NOT self-contained and causes compile error
ramey 757 xml serialization fails when using namespace
ramey 878 error C2039: 'mbstate_t' : is not a member of 'std'
ramey 961 boost::basic_binary_oprimitive not instantiated correctly
ramey 968 xml_grammar - incorrect define char
ramey 969 basic_binary_iprimitive::load_binary bug
rogeeff 1030 execution_monitor.ipp #warning directive breaks
compilation on MSVC 8.0
rogeeff 1032 typo in Boost.Test documentation
rogeeff 1050 BOOST_CHECK_CLOSE_FRACTION documentation missing
rogeeff 1060 no example sources in online docs for Boost::Test
rogeeff 1212 Template fixtures
rogeeff 607 Log level names wrong in documentation
rogeeff 842 typo in auto_unit_test.hpp Revision 1.17
rogeeff 893 grammatical error in error message
rogeeff 956 Doc error in test examples.
rogeeff 962 Missing links in Test library documentation
samuel_k 585 64 bit compile warning/error for boost::format
samuel_krempp 1195 patch: boost/format/parsing.hpp does not compile
if BOOST_NO_LOCALE_ISDIGIT is defined
samuel_krempp 1196 Patch: when BOOST_NO_STD_LOCALE is not defined_
boost/format/internals.hpp fails to compile.
samuel_krempp 1278 declaration of 'str' shadows a member of 'this'
samuel_krempp 704 format zero length string msvc-8
samuel_krempp 859 boost::format ignores a user defined locale
shammah 284 pool::purge_memory() does not reset next_size
shammah 290 perfomance: memory cleanup for pool takes too long
shammah 386 boost::pool_allocator breaks with vector of vectors
shammah 88 ct_gcd_lcm.hpp compilation error
speedsnail 1138 Problems with TSS and static thread library
t_schwinger 1100 Building boost.function_types fails cvs rev-1.1_ no
chdir command in bash
t_schwinger 1332 Inclusion of non existing file
boost/fusion/sequence/utility/unpack_args.hpp in
boost/fusion/sequence/utility.hpp
turkanis 1033 iostreams::restrict doesn't work on an iostreams::file_source
turkanis 1070 [iostreams]boost\iostreams\copy.hpp line80 copy_impl
turkanis 525 problem with boost::iostreams when compiled with Visual C++
turkanis 699 Changing size of memory-mapped file on Windows
turkanis 786 bug in iostreams/copy.hpp line 81
turkanis 791 iostreams::tee_filter is for output only
turkanis 817 Performance problem in iostreams
turkanis 822 Incorrect usage of bad_write()_ bad_seek() etc.
turkanis 823 Seekable file_descriptor_source /sink?
turkanis 824 BOOST_IOSTREAMS_HAS_LSEEK64 on Mac OS X
turkanis 856 iostreams file_descriptor::write fails under Win32
urzuga 574 [boost::lambda] Compile error with libstdc++ debug mode
urzuga 781 Lambda: (_1 + "y")(string("x")) Doesn't Compile
vladimir_prus 1165 more quoting problems
vladimir_prus 1274 Useless error message
vladimir_prus 1275 boost::program_options::validation_error::what() is private
vladimir_prus 1321 invalid docbook in tool documentation
vladimir_prus 469 multitoken broken
vladimir_prus 689 [program_options] Endless loop with long default arguments
witt 1046 Boost.Python quickstart instructions mention nonexistent target
witt 583 Fixes for build on IBM pSeries for AIX and Linux
witt 834 Homepage regression links
witt 957 The "Getting Started" page does not mention the stdlib option
witt 973 zip_iterator has value_type == reference
--
-- Marshall
Marshall Clow Qualcomm, Inc. <mailto:mclow@qualcomm.com>
The famous British scientist, Lord Kelvin, said: "When you measure
what you are speaking about and express it in numbers, you know
something about it, but when you cannot (or do not) measure it, when
you cannot (or do not) express it in numbers, then your knowledge is
of a meagre and unsatisfactory kind."
1
0
Hi,
Trying to get the documentation for BOOST_CHECK_CLOSE_FRACTION
(http://www.boost.org/libs/test/doc/components/test_tools/reference/index.ht…)
I fail with:
An error has been encountered in accessing this page.
1. Server: www.boost.org
2. URL path:
/libs/test/doc/components/test_tools/reference/BOOST_CHECK_CLOSE_FRACTION.html
3. Error notes: File does not exist:
/home/groups/b/bo/boost/htdocs/libs/test/doc/components/test_tools/reference/BOOST_CHECK_CLOSE_FRACTION.html
4. Error type: 404
5. Request method: GET
6. Request query string:
7. Time: 2007-10-25 06:47:03 PDT (1193320023)
Jens
2
1
I would like to commit attached patch to bimap to silence a few of the many
warning I get when using bimap. Any objections?
Regards,
Markus
Index: bimap/detail/set_view_iterator.hpp
===================================================================
--- bimap/detail/set_view_iterator.hpp (revision 40457)
+++ bimap/detail/set_view_iterator.hpp (working copy)
@@ -86,7 +86,7 @@
// Serialization support
- BOOST_SERIALIZATION_SPLIT_MEMBER();
+ BOOST_SERIALIZATION_SPLIT_MEMBER()
friend class ::boost::serialization::access;
@@ -162,7 +162,7 @@
// Serialization support
- BOOST_SERIALIZATION_SPLIT_MEMBER();
+ BOOST_SERIALIZATION_SPLIT_MEMBER()
friend class ::boost::serialization::access;
Index: bimap/detail/map_view_iterator.hpp
===================================================================
--- bimap/detail/map_view_iterator.hpp (revision 40457)
+++ bimap/detail/map_view_iterator.hpp (working copy)
@@ -88,7 +88,7 @@
// Serialization support
- BOOST_SERIALIZATION_SPLIT_MEMBER();
+ BOOST_SERIALIZATION_SPLIT_MEMBER()
friend class ::boost::serialization::access;
@@ -169,7 +169,7 @@
// Serialization support
- BOOST_SERIALIZATION_SPLIT_MEMBER();
+ BOOST_SERIALIZATION_SPLIT_MEMBER()
friend class ::boost::serialization::access;
Index: bimap/relation/member_at.hpp
===================================================================
--- bimap/relation/member_at.hpp (revision 40457)
+++ bimap/relation/member_at.hpp (working copy)
@@ -63,12 +63,10 @@
struct info {};
-};
+}
} // namespace relation
} // namespace bimaps
} // namespace boost
#endif // BOOST_BIMAP_RELATION_MEMBER_AT_HPP
-
-
2
2
Hi Gennadiy!
I've noticed some warnings from msvc.
For details, please look at attached test_warnings.txt.
First, when using AUTO_TEST, I get lots of
warning C4265: 'boost::unit_test::test_observer' : class has virtual
functions, but destructor is not virtual
The easy fix seems to be attached config.diff which simply makes the
destructors virtual for msvc et.al.
Second, when running the Boost.Test testsuite, basic_cstring_test.cpp
triggers "deprecated" warnings from the msvc-Stdlib.
Please find diff against test/Jamfile.v2 attached.
I can apply those patches myself, when necessary.
And by the way: test/details/config.hpp still contains CVS-"log"
entries.
And it would also be nice to have some tests using AUTO_TEST in the
Boost.Test testsuite.
Yours,
Jürgen
--
* Dipl.-Math. Jürgen Hunold ! Ingenieurgesellschaft für
* voice: ++49 511 262926 57 ! Verkehrs- und Eisenbahnwesen mbH
* fax : ++49 511 262926 99 ! Lister Straße 15
* juergen.hunold(a)ivembh.de ! www.ivembh.de
*
* Geschäftsführer: ! Sitz des Unternehmens: Hannover
* Prof. Dr.-Ing. Thomas Siefer ! Amtsgericht Hannover, HRB 56965
* PD Dr.-Ing. Alfons Radtke !
3
2
The thread lib isn't currently building with msvc-8, cygwin and Mingw32:
MSVC Errors:
msvc.link.dll
..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.dll
..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug
\threading-multi\boost_thread-vc80-mt-gd-1_35.lib
Creating library
..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.lib
and object
..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.exp
thread.obj : error LNK2019: unresolved external symbol "private: __thiscall
boost::thread::thread(class boost::thread &)"
(??0thread@boost@@AAE@AAV01@@Z) referenced in function "public: static class
boost::thread __cdecl boost::thread::self(void)"
(?self@thread@boost@@SA?AV12@XZ)
..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.dll
: fatal error LNK1120: 1 unresolved externals
call "c:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat"
x86 >
nul
link /NOLOGO /INCREMENTAL:NO /DLL /DEBUG /subsystem:console
/out:"..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.dll"
/IMPLIB:"..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.lib"
@"..\..\..\bin.v2\libs\thread\build\msvc-8.0
\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.dll.rsp"
if %ERRORLEVEL% NEQ 0 EXIT %ERRORLEVEL%
if exist
"..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.dll.manifest"
(
mt -nologo -manifest
"..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc80-mt-gd-1_35.dll.manifest"
"-outputresource:..\..\..\bin.v2\libs\thread\build\msvc-8.0\debug\threading-multi\boost_thread-vc8
0-mt-gd-1_35.dll;2" )
Cygwin has lots of compiler errors: looks like it should be configured to
use the POSIX thread lib rather than the Win32 API's?
Mingw32 has the following build errors:
gcc.compile.c++
..\..\..\bin.v2\libs\thread\build\gcc-mingw-mw\debug\threading-multi\thread.o
..\..\..\libs\thread\src\win32\thread.cpp: In static member function `static
boost::thread boost::thread::self()':
..\..\..\libs\thread\src\win32\thread.cpp:160: error: no matching function
for call to `boost::thread::thread(boost::thread)'
../../../boost/thread/win32/thread.hpp:69: note: candidates are:
boost::thread::thread(boost::thread&)
Really we shouldn't be getting this many breakages this close to a release!
:-(
John Maddock.
2
1
Hi,
Is there a way to serialize a shared_ptr to a const object?
For example: ar & shared_ptr<const A> b;
I receive a compile error that prevents the above code from working.
2
1
Hello,
As I'm preparing the dataflow library for submission (a.k.a. signal
network gsoc project), I'm revisiting some of the design choices.
Since I'm not too experienced with generic library design, I was
wondering if anyone would share some advice on which tag dispatch
convention to use.
For my specializable functions, I adapted what is used in fusion, e.g.:
template<typename ProducerTag, ConsumerTag>
struct operation_impl;
template<>
struct operation_impl<some_producer_tag, some_consumer_tag>
{
template<typename P, typename C>
struct apply
{
typedef some_result_type type;
static type call(P &p, C &c)
{
...
}
};
};
and then free function `operation` extracts the tags from its
arguments, calls operation_impl, and returns the result.
Could someone tell me what the advantages/disadvantages of this
approach are compared to, say,
template<>
struct operation_impl<some_producer_tag, some_consumer_tag>
{
// specify result type using result_type typedef or template<> struct result
// ...
template<typename P, typename C>
some_result_type operator()(P &p, C &c)
{
...
};
};
, or the technique described in:
http://www.boost.org/more/generic_programming.html,
or any other tag dispatching convention I should be aware of?
Thanks in advance!
Stjepan
4
7
Hi,
I recently posted a patch which fixes some g++ 4.3 compiler errors and
warnings but it was mostly ignored. I was forced that's why to create
bug reports (which you call ticket, don't know why) for each library
(which is time consuming especially without email interface) (#1332 --
#1341).
I assumed trivial bugs such as
Index: boost/gil/extension/dynamic_image/apply_operation_base.hpp
===================================================================
--- boost/gil/extension/dynamic_image/apply_operation_base.hpp (Revision 40416)
+++ boost/gil/extension/dynamic_image/apply_operation_base.hpp (Arbeitskopie)
@@ -100,7 +100,7 @@
// Create specializations of apply_operation_fn for each N 0..100
GIL_GENERATE_APPLY_FWD_OPS(99)
-};
+}
// unary application
template <typename Types, typename Bits, typename Op>
which lead to real compile errors (at least using -pedantic) will be
fixed during minutes but I was wrong!
Of course I know that not everyone can react as fast but why do not commit
other people such elementary stuff? Instead many simple patches are rotting
in the bug database. Is this useful?
Is it enforced somewhere that only the maintainer is allowed to commit patches
for his library? I understand of course that not trivial stuff which needs to
be analysed cannot be handled this way but there are so many trivial patches
just ignored ...
Jens
3
2
Looks like the range fixes broke foreach. See
http://mysite.verizon.net/beman/bgd-win32-trunk-results.html
--Beman
5
15