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
October 2007
- 190 participants
- 337 discussions

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