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
September 2007
- 175 participants
- 261 discussions
Hello,
attached patch makes the space optimized test pass for this platform. It
adds two missing fwd declarations to details.hpp and a workaround to
space_optimized.hpp.
OK to commit?
Markus
Index: circular_buffer/space_optimized.hpp
===================================================================
--- circular_buffer/space_optimized.hpp (revision 39572)
+++ circular_buffer/space_optimized.hpp (working copy)
@@ -14,6 +14,7 @@
#endif
#include <boost/type_traits/is_same.hpp>
+#include <boost/detail/workaround.hpp>
namespace boost {
@@ -1234,7 +1235,11 @@
ensure_reserve(new_capacity, new_size));
}
#if BOOST_CB_ENABLE_DEBUG
+# if BOOST_WORKAROUND(__DECCXX_VER, BOOST_TESTED_AT(70190006))
+ this->invalidate_iterators_except(end());
+# else
invalidate_iterators_except(end());
+# endif
#endif
}
@@ -1254,7 +1259,11 @@
circular_buffer<T, Alloc>::set_capacity(
ensure_reserve(new_capacity, size()));
#if BOOST_CB_ENABLE_DEBUG
+# if BOOST_WORKAROUND(__DECCXX_VER, BOOST_TESTED_AT(70190006))
+ this->invalidate_iterators_except(end());
+# else
invalidate_iterators_except(end());
+# endif
#endif
}
Index: circular_buffer/details.hpp
===================================================================
--- circular_buffer/details.hpp (revision 39572)
+++ circular_buffer/details.hpp (working copy)
@@ -24,6 +24,14 @@
template <class Traits> struct nonconst_traits;
+template<class ForwardIterator, class Diff, class T, class Alloc>
+void uninitialized_fill_n_with_alloc(
+ ForwardIterator first, Diff n, const T& item, Alloc& alloc);
+
+template<class InputIterator, class ForwardIterator, class Alloc>
+ForwardIterator uninitialized_copy_with_alloc(
+ InputIterator first, InputIterator last, ForwardIterator dest, Alloc& alloc);
+
/*!
\struct const_traits
\brief Defines the data types for a const iterator.
1
0
Hello,
I am trying to respond on the discussion (in the developer's list) on the
indicated topic which were in 3-7 Sept. 2007. Not sure my e-mail will go
by the right way (because of some technical troubles). But trying...
Mathias Gaunard wrote:
> Edd Dawson wrote:
> > I'm confused. Surely the whole point of shared_ptr is to relieve the
> >programmer
> > of the burden of worrying when its still used.
> The problem is that with large programs you're not able to tell easily
> where it is being used. (also, you may create cycles by oversight, but
> that could be fixed eventually)
> The fact that it is automatically destructed when not used doesn't not
> mean that it can't be still used at wrong places, especially after code
> refactoring and modifications.
>
> > How are programs made more deterministic?
> Because ownership is fixed to a scope. You thus perfectly know when the
> object will be constructed and destructed.
> With shared ownership, ownership is fully dynamic, and thus not
> determined.
These statements (from Mathias Gaunard) are very similar to those which I
was trying to popularize in this news group a few years ago and first time
even some 5-7 years ago. Though it seemed that I could not convince the
majority (in particular that the shared pointers are in general
unnecessary). But I am myself still convinced, although admit that shared
pointer is acceptable in some rare exclusive circumstances.
But, the content of Foo class, which Mathias Gaunard proposed in its
first mail, is not clear for me.
May be I am behind progress, but I do not know a way to make cloning
pointer (or that Mathias' value object, but this seems to be the same in
principle) to be non-intrusive. You anyway need virtual cloning function
in each class of the hierarchy.
I am trying to maintain an Internet page about these things, see
http://cern.ch/ismirnov/safetl
Regards
Igor Smirnov
5
8
Hello,
I work with Boost on a daily basis and generally I work with svn trunk.
I also use some boostified libraries that are not officially accepted
into Boost yet. There are also times when I need to make changes to the
way a component or library behaves that are not well factored enough to
make it in to the official tree but serve their purpose.
How do I manage these complications?
At present I have a folder named boost which has an external named clean
to svn trunk and a folder named patch which mirror's trunk's layout but
contains some unofficial boost components from the vault or the sandbox
as well as some local modifications but not a full copy of trunk.
The first problem comes up while extending BBv2 to handle a new
compiler. I must point boost-build.jam to a directory and it will look
there for all its files so if I have changes I have to copy the entire
boost/tools/build folder into the patch directory tree. Now I'm free to
modify it and add files but it will quickly go stale and need to be
resynced with trunk.
I thought of creating svn patch files, checking those into my local
repository and then just applying those patches when I checkout but
those cannot handle the addition of files. It also makes it impossible
to simply checkout from svn and have things just work which I very much
want.
I have a similar problem with the open source Adobe libraries which
relates back to Boost. I need to patch those libraries to point to my
version of Boost not theirs so I don't have 2 versions of Boost floating
around in my code.
In the past I've just copied the whole repository done my changes
locally and hand merged with the latest from the Boost repository when I
needed to update. This is tedious and error prone.
Does anyone else have this problem?
If so, how did you solve it?
Thanks,
Michael Marcin
4
3

[serialization] export.hpp (or type_info_implementation.hpp) is NOT self-contained and causes compile error
by Sean Huang 27 Sep '07
by Sean Huang 27 Sep '07
27 Sep '07
The following code should compile:
#include <boost/serialization/export.hpp>
class A { };
BOOST_CLASS_EXPORT( A );
instead I got:
error C2027: use of undefined type
'boost::serialization::extended_type_info_impl<T>' 1> with 1> [ 1> T=A 1> ]
Which file needs to be included to make this compile?
Regards,
Sean
2
1
1
0
There was a long discussion about shared_mutex et al, and that was
great. I don't want to start it all over again, but I was just
wondering about the name:
- I agree that 'reader writer', while known, might not be the best
basis for a name
- 'shared' is part of the answer
but
- aren't the terms 'shared' and 'mutual exclusion' (as in 'mutex'),
well, mutually exclusive? ie somewhat contradicting?
also, maybe 'shareable' is better than 'shared'? (other than an
argument over whether it should have an 'e' stuck in the middle there
or not)
so how about:
'sharable_exclusion' (still sounds contradictory?) (sharex?)
'access_controller' - doesn't use known terminology, but is closer to
what is really going on - it controls access to a resource.
or
'shareable_access'?
or ?
shared_or_exclusive_access is probably the 'truest' description (and
closest to reader_writer, as it does list both 'sides of the coin'),
but a bit wordy...
Tony
3
2
Hi to all,
I've uploaded to SVN a new version of Boost.Intrusive that uses the
new option specification syntax discussed some time ago in this mailing
list:
using namespace boost::intrusive;
class MyClass
: public list_base_hook
< void_pointer<offset_ptr<void> >
, link_mode<auto_unlink>
>
{
//...
};
typedef list<MyClass, constant_time_size<false> > IntrusiveList;
The new syntax is more verbose, but easier for common uses:
class MyClass
: unordered_set_base_hook<>
{
friend operator==(...);
friend hash_value(...);
};
//We don't need to specify default hash and equality functors
typedef unordered_set<MyClass> MyHashSet;
I've uploaded the new documentation here:
http://igaztanaga.drivehq.com/intrusive
Documentation is still lacking but I think it's fairly adapted to the
new syntax. Apart from the new syntax, new features:
-> Added stateful value traits.
-> Fixed bug in 64 bit platforms (thanks Glenn!).
-> Added support for custom bucket traits in unordered containers.
-> Added option to use masks instead of modulo operations to determine
the bucket number from the hash value (provided bucket length is always
power of two).
-> Changed all recursive functions from red-black tree algorithms with
non-recursive ones (thanks Steven!).
Interface change is a big change in the library, so I expect complaints
from users. But I think the new syntax is much easier to use,
specially as new options are added (unordered containers now receive upt
o 7 options!). And the time to do breaking changes is before the library
is officially released. Suggestions, improvements and comments are
welcome ;-)
Regards,
Ion
P.S.: If users prefer the old syntax, we can go back again to the old
way. Just be polite ;-)
3
4
Boost regression test failures
Report time: 2007-09-27T10:24:06Z
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
darwin-4.0.1
msvc-8.0
sun-5.8
2963 failures in 42 libraries (654 are from non-broken platforms)
algorithm/string (0 of 2 failures are from non-broken platforms)
asio (14 of 154 failures are from non-broken platforms)
assign (0 of 2 failures are from non-broken platforms)
bimap (85 of 293 failures are from non-broken platforms)
bind (0 of 4 failures are from non-broken platforms)
circular_buffer (0 of 2 failures are from non-broken platforms)
concept_check (2 of 16 failures are from non-broken platforms)
config (1 of 5 failures are from non-broken platforms)
conversion (1 of 11 failures are from non-broken platforms)
date_time (1 of 19 failures are from non-broken platforms)
dynamic_bitset (0 of 1 failures are from non-broken platforms)
filesystem (0 of 12 failures are from non-broken platforms)
foreach (2)
function (0 of 20 failures are from non-broken platforms)
gil (2 of 6 failures are from non-broken platforms)
graph (7 of 26 failures are from non-broken platforms)
interprocess (227 of 618 failures are from non-broken platforms)
intrusive (30 of 58 failures are from non-broken platforms)
iostreams (0 of 2 failures are from non-broken platforms)
lambda (1)
math (0 of 1 failures are from non-broken platforms)
multi_index (1 of 2 failures are from non-broken platforms)
numeric/interval (0 of 3 failures are from non-broken platforms)
optional (0 of 3 failures are from non-broken platforms)
program_options (0 of 12 failures are from non-broken platforms)
property_map (0 of 2 failures are from non-broken platforms)
ptr_container (0 of 5 failures are from non-broken platforms)
python (6 of 8 failures are from non-broken platforms)
range (11 of 27 failures are from non-broken platforms)
rational (0 of 2 failures are from non-broken platforms)
regex (0 of 3 failures are from non-broken platforms)
serialization (217 of 1475 failures are from non-broken platforms)
signals (0 of 10 failures are from non-broken platforms)
spirit (6 of 18 failures are from non-broken platforms)
system (0 of 16 failures are from non-broken platforms)
test (0 of 2 failures are from non-broken platforms)
thread (0 of 26 failures are from non-broken platforms)
tr1 (30 of 66 failures are from non-broken platforms)
type_traits (0 of 4 failures are from non-broken platforms)
utility (0 of 2 failures are from non-broken platforms)
wave (4 of 12 failures are from non-broken platforms)
xpressive (6 of 10 failures are from non-broken platforms)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|algorithm/string|
split: borland-5.6.4* borland-5.8.2*
|asio|
basic_datagram_socket: borland-5.6.4* borland-5.8.2*
basic_datagram_socket_select: borland-5.6.4* borland-5.8.2*
basic_deadline_timer: borland-5.6.4* borland-5.8.2*
basic_deadline_timer_select: borland-5.6.4* borland-5.8.2*
basic_socket_acceptor: borland-5.6.4* borland-5.8.2*
basic_socket_acceptor_select: borland-5.6.4* borland-5.8.2*
basic_stream_socket: borland-5.6.4* borland-5.8.2*
basic_stream_socket_select: borland-5.6.4* borland-5.8.2*
buffered_read_stream: borland-5.6.4* borland-5.8.2*
buffered_read_stream_select: borland-5.6.4* borland-5.8.2*
buffered_stream: borland-5.6.4* borland-5.8.2*
buffered_stream_select: borland-5.6.4* borland-5.8.2*
buffered_write_stream: borland-5.6.4* borland-5.8.2*
buffered_write_stream_select: borland-5.6.4* borland-5.8.2*
datagram_socket_service: borland-5.6.4* borland-5.8.2*
datagram_socket_service_select: borland-5.6.4* borland-5.8.2*
deadline_timer: acc borland-5.6.4* borland-5.8.2*
deadline_timer_select: acc borland-5.6.4* borland-5.8.2*
deadline_timer_service: borland-5.6.4* borland-5.8.2*
deadline_timer_service_select: borland-5.6.4* borland-5.8.2*
error: borland-5.6.4* borland-5.8.2*
error_select: borland-5.6.4* borland-5.8.2*
io_service: borland-5.6.4* borland-5.8.2*
io_service_select: borland-5.6.4* borland-5.8.2*
ip_address: borland-5.6.4* borland-5.8.2*
ip_address_select: borland-5.6.4* borland-5.8.2*
ip_address_v4: acc borland-5.6.4* borland-5.8.2*
ip_address_v4_select: acc borland-5.6.4* borland-5.8.2*
ip_address_v6: acc borland-5.6.4* borland-5.8.2*
ip_address_v6_select: acc borland-5.6.4* borland-5.8.2*
ip_basic_endpoint: borland-5.6.4* borland-5.8.2*
ip_basic_endpoint_select: borland-5.6.4* borland-5.8.2*
ip_basic_resolver: borland-5.6.4* borland-5.8.2*
ip_basic_resolver_iterator: borland-5.6.4* borland-5.8.2*
ip_basic_resolver_iterator_select: borland-5.6.4* borland-5.8.2*
ip_basic_resolver_query: borland-5.6.4* borland-5.8.2*
ip_basic_resolver_query_select: borland-5.6.4* borland-5.8.2*
ip_basic_resolver_select: borland-5.6.4* borland-5.8.2*
ip_host_name: borland-5.6.4* borland-5.8.2*
ip_host_name_select: borland-5.6.4* borland-5.8.2*
ip_multicast: acc borland-5.6.4* borland-5.8.2*
ip_multicast_select: acc borland-5.6.4* borland-5.8.2*
ip_resolver_service: borland-5.6.4* borland-5.8.2*
ip_resolver_service_select: borland-5.6.4* borland-5.8.2*
ip_tcp: borland-5.6.4* borland-5.8.2*
ip_tcp_select: borland-5.6.4* borland-5.8.2*
ip_udp: borland-5.6.4* borland-5.8.2*
ip_udp_select: borland-5.6.4* borland-5.8.2*
ip_unicast: acc borland-5.6.4* borland-5.8.2*
ip_unicast_select: acc borland-5.6.4* borland-5.8.2*
ip_v6_only: acc borland-5.6.4* borland-5.8.2*
ip_v6_only_select: acc borland-5.6.4* borland-5.8.2*
is_read_buffered: borland-5.6.4* borland-5.8.2*
is_read_buffered_select: borland-5.6.4* borland-5.8.2*
is_write_buffered: borland-5.6.4* borland-5.8.2*
is_write_buffered_select: borland-5.6.4* borland-5.8.2*
read: borland-5.6.4* borland-5.8.2*
read_select: borland-5.6.4* borland-5.8.2*
read_until: borland-5.6.4* borland-5.8.2*
read_until_select: borland-5.6.4* borland-5.8.2*
socket_acceptor_service: borland-5.6.4* borland-5.8.2*
socket_acceptor_service_select: borland-5.6.4* borland-5.8.2*
socket_base: acc borland-5.6.4* borland-5.8.2*
socket_base_select: acc borland-5.6.4* borland-5.8.2*
strand: borland-5.6.4* borland-5.8.2*
strand_select: borland-5.6.4* borland-5.8.2*
stream_socket_service: borland-5.6.4* borland-5.8.2*
stream_socket_service_select: borland-5.6.4* borland-5.8.2*
write: borland-5.6.4* borland-5.8.2*
write_select: borland-5.6.4* borland-5.8.2*
|assign|
static_list_of: borland-5.6.4* borland-5.8.2*
|bimap|
assign: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
foreach: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
lambda: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
property_map: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
range: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
serialization: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_assign: borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_convenience_header: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_extra: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_bimap_info: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_lambda: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_list_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_bimap_modify: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_multiset_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_bimap_mutable: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_operator_bracket: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_ordered: borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_project: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_property_map: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_range: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_sequenced: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_serialization: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_set_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_bimap_unconstrained: borland-5.6.4* borland-5.8.2* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_unordered: borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_unordered_multiset_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_bimap_unordered_set_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_bimap_vector_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_mutant: borland-5.6.4* borland-5.8.2*
test_mutant_relation: borland-5.6.4* borland-5.8.2*
test_structured_pair: borland-5.6.4* borland-5.8.2*
test_tagged: borland-5.6.4* borland-5.8.2*
typeof: borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
xpressive: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
|bind|
bind_function_test: borland-5.6.4* borland-5.8.2*
bind_placeholder_test: borland-5.6.4* borland-5.8.2*
|circular_buffer|
bounded_buffer_comparison: borland-5.6.4* borland-5.8.2*
|concept_check|
class_concept_fail_expected: sun-5.8* sun-5.8*
old_concept_class_fail: borland-5.6.4* borland-5.8.2* gcc-3.3.6 sun-5.8* sun-5.8*
old_concept_function_fail: borland-5.6.4* borland-5.8.2* gcc-3.3.6 sun-5.8* sun-5.8*
usage_fail: sun-5.8* sun-5.8*
where_fail: sun-5.8* sun-5.8*
|config|
config_test: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0*
math_info: borland-5.6.4*
|conversion|
lexical_cast_loopback_test: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0* sun-5.8* sun-5.8*
lexical_cast_test: borland-5.6.4* borland-5.8.2* sun-5.8* sun-5.8*
|date_time|
testgreg_serialize: borland-5.6.4* borland-5.8.2*
testgreg_serialize_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
testgreg_serialize_xml: borland-5.6.4* borland-5.8.2*
testtime_serialize: borland-5.6.4* borland-5.8.2*
testtime_serialize_std_config: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml: borland-5.6.4* borland-5.8.2* darwin-4.0.1*
testtime_serialize_xml_std_config: borland-5.6.4* borland-5.8.2* darwin-4.0.1*
|dynamic_bitset|
dyn_bitset_unit_tests4: sun-5.8*
|filesystem|
convenience_test: borland-5.6.4* borland-5.8.2*
fstream_test: borland-5.6.4* borland-5.8.2*
large_file_support_test: borland-5.6.4* borland-5.8.2*
operations_test: borland-5.6.4* borland-5.8.2*
path_test: borland-5.6.4* borland-5.8.2*
simple_ls: borland-5.6.4* borland-5.8.2*
|foreach|
array_byref: msvc-7.1
array_byval: msvc-7.1
|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_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*
|gil|
main: acc borland-5.6.4* borland-5.8.2* gcc-3.3.6 sun-5.8* sun-5.8*
|graph|
all_planar_input_files_test: sun-5.8* sun-5.8*
basic_planarity_test: sun-5.8* sun-5.8*
csr_graph_test: msvc-7.1
cycle_ratio_tests: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0* sun-5.8* sun-5.8*
graphml_test: msvc-8.0*
graphviz_test: msvc-8.0*
kolmogorov_max_flow_test: acc
make_biconnected_planar_test: sun-5.8* sun-5.8*
make_maximal_planar_test: sun-5.8* sun-5.8*
max_flow_test: acc
parallel_edges_loops_test: sun-5.8* sun-5.8*
|interprocess|
adaptive_node_pool_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
adaptive_pool_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
alloc_example: acc gcc-3.3.6 intel-linux-9.0 sun-5.8*
allocexcept_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
cached_adaptive_pool_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
cached_node_allocator_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
condition_test: acc darwin-4.0.1* darwin-4.0.1* sun-5.8*
data_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
deque_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_adaptive_pool: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_allocator: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_conditionA: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_conditionB: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_mutexA: sun-5.8* sun-5.8*
doc_anonymous_mutexB: sun-5.8* sun-5.8*
doc_anonymous_semaphoreA: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_semaphoreB: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_upgradable_mutexA: sun-5.8* sun-5.8*
doc_anonymous_upgradable_mutexB: sun-5.8* sun-5.8*
doc_bufferstream: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_cached_adaptive_pool: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_cached_node_allocator: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_cont: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_contA: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_contB: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_file_mapping: sun-5.8* sun-5.8*
doc_file_mapping2: sun-5.8* sun-5.8*
doc_intrusive: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_ipc_messageA: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_ipc_messageB: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_aligned_allocation: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_allocation_command: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_construction_info: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_external_buffer: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_heap_memory: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_mapped_file: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_multiple_allocation: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_raw_allocation: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_map: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_message_queueA: acc sun-5.8* sun-5.8*
doc_message_queueB: acc sun-5.8* sun-5.8*
doc_move_containers: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_named_allocA: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_named_allocB: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_named_conditionA: acc gcc-3.3.6 intel-linux-9.0 sun-5.8*
doc_named_conditionB: acc gcc-3.3.6 intel-linux-9.0 sun-5.8*
doc_named_mutex: acc sun-5.8*
doc_node_allocator: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_offset_ptr: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_private_adaptive_pool: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_private_node_allocator: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_scoped_ptr: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_shared_memory: sun-5.8* sun-5.8*
doc_shared_memory2: sun-5.8* sun-5.8*
doc_shared_ptr: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* sun-5.8*
doc_shared_ptr_explicit: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* sun-5.8*
doc_unique_ptr: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* sun-5.8*
doc_vectorstream: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_where_allocate: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
file_lock_test: msvc-7.1 msvc-8.0*
file_mapping_test: acc sun-5.8* sun-5.8*
flat_map_index_allocation_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* intel-linux-9.0 sun-5.8* sun-5.8*
flat_tree_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* intel-linux-9.0 sun-5.8* sun-5.8*
intrusive_ptr_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
iset_index_allocation_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
iunordered_set_index_allocation_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
list_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
managed_mapped_file_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
map_index_allocation_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* intel-linux-9.0 sun-5.8* sun-5.8*
mapped_file_test: acc sun-5.8* sun-5.8*
memory_algorithm_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
message_queue_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* intel-linux-9.0 sun-5.8* sun-5.8*
named_alloc_example: acc gcc-3.3.6 intel-linux-9.0 sun-5.8*
named_condition_test: acc darwin-4.0.1* darwin-4.0.1* intel-linux-9.0 sun-5.8* sun-5.8*
named_mutex_test: acc sun-5.8* sun-5.8*
named_recursive_mutex_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
named_semaphore_test: acc sun-5.8* sun-5.8*
named_upgradable_mutex_test: acc sun-5.8* sun-5.8*
node_allocator_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
node_pool_test: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* sun-5.8*
null_index_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
private_adaptive_pool_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
private_node_allocator_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
process_a_example: acc gcc-3.3.6 intel-linux-9.0 sun-5.8*
process_a_fixed_example: acc gcc-3.3.6 intel-linux-9.0 msvc-7.1 sun-5.8*
process_b_example: acc gcc-3.3.6 intel-linux-9.0 sun-5.8*
process_b_fixed_example: acc gcc-3.3.6 intel-linux-9.0 sun-5.8*
recursive_mutex_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
semaphore_test: acc sun-5.8*
shared_memory_mapping_test: sun-5.8* sun-5.8*
shared_memory_test: acc sun-5.8* sun-5.8*
shared_ptr_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
slist_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
string_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
tree_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* intel-linux-9.0 sun-5.8* sun-5.8*
unique_ptr_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
upgradable_mutex_test: acc darwin-4.0.1* darwin-4.0.1* sun-5.8*
user_buffer_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
vector_test: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* intel-linux-9.0 sun-5.8* sun-5.8*
vectorstream_test: gcc-3.3.6
|intrusive|
custom_bucket_traits_test: sun-5.8*
default_hook_test: sun-5.8*
doc_advanced_value_traits: intel-linux-9.0
doc_advanced_value_traits2: intel-linux-9.0
doc_assoc_optimized_code: intel-linux-9.0 sun-5.8*
doc_auto_unlink: intel-linux-9.0 sun-5.8*
doc_bucket_traits: sun-5.8*
doc_clone_from: intel-linux-9.0 sun-5.8*
doc_entity: intel-linux-9.0 sun-5.8*
doc_erasing_and_disposing: intel-linux-9.0 sun-5.8*
doc_external_value_traits: sun-5.8*
doc_how_to_use: intel-linux-9.0 sun-5.8*
doc_iterator_from_value: intel-linux-9.0
doc_list: intel-linux-9.0 sun-5.8*
doc_offset_ptr: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
doc_set: intel-linux-9.0 sun-5.8*
doc_slist: intel-linux-9.0 sun-5.8*
doc_unordered_set: intel-linux-9.0 sun-5.8*
doc_value_traits: intel-linux-9.0
doc_window: intel-linux-9.0 sun-5.8*
external_value_traits_test: sun-5.8*
list_test: acc intel-linux-9.0 sun-5.8*
make_functions_test: sun-5.8*
multiset_test: acc intel-linux-9.0 sun-5.8*
set_test: acc intel-linux-9.0 sun-5.8*
slist_test: acc intel-linux-9.0 sun-5.8*
unordered_multiset_test: acc intel-linux-9.0 sun-5.8*
unordered_set_test: acc intel-linux-9.0 sun-5.8*
|iostreams|
regex_filter_test: borland-5.6.4* borland-5.8.2*
|lambda|
operator_tests_simple: msvc-7.1
|math|
common_factor_test: borland-5.8.2*
|multi_index|
test_modifiers: msvc-7.1 msvc-8.0*
|numeric/interval|
mul: darwin-4.0.1*
overflow: darwin-4.0.1*
pi: darwin-4.0.1*
|optional|
optional_test: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1*
|program_options|
cmdline_test: borland-5.6.4* borland-5.8.2*
cmdline_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*
variable_map_test: borland-5.6.4* borland-5.8.2*
variable_map_test_dll: borland-5.6.4* borland-5.8.2*
|property_map|
dynamic_properties_test: borland-5.6.4* borland-5.8.2*
|ptr_container|
serialization: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* sun-5.8* sun-5.8*
|python|
bases: intel-linux-9.0
exec: intel-linux-9.0
import_: intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0*
pointee: intel-linux-9.0
upcast: intel-linux-9.0
|range|
array: msvc-7.1
iterator_range: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0* sun-5.8* sun-5.8*
reversible_range: msvc-7.1
string: msvc-7.1
sub_range: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 msvc-7.1 sun-5.8* sun-5.8*
|rational|
rational_test: borland-5.6.4* borland-5.8.2*
|regex|
regex_regress_threaded: darwin-4.0.1*
static_mutex_test: 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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_binary_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_text_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_text_warchive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_xml_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_xml_warchive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_exception: borland-5.6.4* borland-5.8.2*
test_demo_exception_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_polymorphic: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_portable_archive: borland-5.6.4* borland-5.8.2* darwin-4.0.1* darwin-4.0.1*
test_demo_portable_archive_dll: borland-5.8.2* darwin-4.0.1* darwin-4.0.1*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_xml: borland-5.6.4* borland-5.8.2*
test_demo_xml_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_xml_load_dll: msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_binary_archive: borland-5.6.4* borland-5.8.2*
test_exported_binary_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_text_archive: borland-5.6.4* borland-5.8.2*
test_exported_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_text_warchive: borland-5.6.4* borland-5.8.2*
test_exported_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_xml_archive: borland-5.6.4* borland-5.8.2*
test_exported_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_xml_warchive: borland-5.6.4* borland-5.8.2*
test_exported_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_text_archive: borland-5.6.4* borland-5.8.2*
test_list_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_text_warchive: borland-5.6.4* borland-5.8.2*
test_list_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_xml_archive: borland-5.6.4* borland-5.8.2*
test_list_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_xml_warchive: borland-5.6.4* borland-5.8.2*
test_list_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_map_text_archive: borland-5.6.4* borland-5.8.2*
test_map_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_map_text_warchive: borland-5.6.4* borland-5.8.2*
test_map_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_map_xml_archive: borland-5.6.4* borland-5.8.2*
test_map_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_map_xml_warchive: borland-5.6.4* borland-5.8.2*
test_map_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_binary_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_text_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_text_warchive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_xml_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_xml_warchive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_non_default_ctor_binary_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_binary_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_non_intrusive_binary_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_binary_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_binary_archive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_binary_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_text_archive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_text_warchive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_xml_archive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_xml_warchive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_private_ctor: borland-5.6.4* borland-5.8.2*
test_private_ctor_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_binary_archive: borland-5.8.2*
test_set_binary_archive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_text_archive: borland-5.8.2*
test_set_text_archive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_text_warchive: borland-5.8.2*
test_set_text_warchive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_xml_archive: borland-5.8.2*
test_set_xml_archive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_xml_warchive: borland-5.8.2*
test_set_xml_warchive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_valarray_text_archive: borland-5.6.4* borland-5.8.2*
test_valarray_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_valarray_text_warchive: borland-5.6.4* borland-5.8.2*
test_valarray_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_valarray_xml_archive: borland-5.6.4* borland-5.8.2*
test_valarray_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_valarray_xml_warchive: borland-5.6.4* borland-5.8.2*
test_valarray_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_binary_archive: borland-5.6.4*
test_variant_binary_archive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_text_archive: borland-5.6.4*
test_variant_text_archive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_text_warchive: borland-5.6.4*
test_variant_text_warchive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_xml_archive: borland-5.6.4*
test_variant_xml_archive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_xml_warchive: borland-5.6.4*
test_variant_xml_warchive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_vector_text_archive: borland-5.6.4* borland-5.8.2*
test_vector_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_vector_text_warchive: borland-5.6.4* borland-5.8.2*
test_vector_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_vector_xml_archive: borland-5.6.4* borland-5.8.2*
test_vector_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_vector_xml_warchive: borland-5.6.4* borland-5.8.2*
test_vector_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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*
|spirit|
mix_and_match_trees: sun-5.8* sun-5.8*
numerics_tests: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0*
numerics_tests_debug: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0*
|system|
error_code_test: borland-5.6.4* borland-5.8.2*
error_code_test_dll: borland-5.6.4* borland-5.8.2*
error_code_user_test: borland-5.6.4* borland-5.8.2*
error_code_user_test_dll: borland-5.6.4* borland-5.8.2*
header_only_test: borland-5.6.4* borland-5.8.2*
initialization_test: borland-5.6.4* borland-5.8.2*
system_error_test: borland-5.6.4* borland-5.8.2*
system_error_test_dll: borland-5.6.4* borland-5.8.2*
|test|
boost_check_equal_str: sun-5.8* sun-5.8*
|thread|
test_barrier: borland-5.6.4* borland-5.8.2*
test_barrier_lib: borland-5.6.4* borland-5.8.2*
test_condition: borland-5.6.4* borland-5.8.2*
test_condition_lib: borland-5.6.4* borland-5.8.2*
test_mutex: borland-5.6.4* borland-5.8.2*
test_mutex_lib: borland-5.6.4* borland-5.8.2*
test_once: borland-5.6.4* borland-5.8.2*
test_once_lib: borland-5.6.4* borland-5.8.2*
test_read_write_mutex: borland-5.6.4* borland-5.8.2*
test_read_write_mutex_lib: borland-5.6.4* borland-5.8.2*
test_thread: borland-5.6.4* borland-5.8.2*
test_thread_lib: borland-5.6.4* borland-5.8.2*
test_tss: borland-5.6.4* borland-5.8.2*
|tr1|
std_run_complex_overloads: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0
std_run_random: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0
std_test_regex: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0
std_test_shared_ptr: borland-5.8.2*
std_test_tr1_include: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
std_test_tuple: acc darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
std_test_tuple_tricky: acc darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_shared_ptr: borland-5.8.2*
test_tr1_include: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_tuple: acc darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
test_tuple_tricky: acc darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_utility_std_header: acc darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 sun-5.8*
|type_traits|
make_signed_test: borland-5.6.4* borland-5.8.2*
make_unsigned_test: borland-5.6.4* borland-5.8.2*
|utility|
result_of_test: sun-5.8* sun-5.8*
|wave|
test_re2c_lexer: msvc-7.1 msvc-8.0*
test_slex_lexer: darwin-4.0.1* darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0*
testwave_dll: sun-5.8* sun-5.8*
|xpressive|
test_actions: acc darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0
test_symbols: acc darwin-4.0.1* darwin-4.0.1* gcc-3.3.6 intel-linux-9.0
1
0
Boost regression test failures
Report time: 2007-09-26T10:16:24Z
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
msvc-8.0
sun-5.8
2992 failures in 42 libraries (1040 are from non-broken platforms)
algorithm/string (2 of 4 failures are from non-broken platforms)
asio (88 of 228 failures are from non-broken platforms)
assign (0 of 2 failures are from non-broken platforms)
bimap (119 of 247 failures are from non-broken platforms)
bind (0 of 4 failures are from non-broken platforms)
circular_buffer (2 of 4 failures are from non-broken platforms)
concept_check (3 of 17 failures are from non-broken platforms)
config (1 of 5 failures are from non-broken platforms)
conversion (1 of 11 failures are from non-broken platforms)
date_time (1 of 17 failures are from non-broken platforms)
dynamic_bitset (1 of 2 failures are from non-broken platforms)
filesystem (0 of 12 failures are from non-broken platforms)
foreach (2)
function (0 of 20 failures are from non-broken platforms)
gil (3 of 7 failures are from non-broken platforms)
graph (17 of 33 failures are from non-broken platforms)
interprocess (393 of 579 failures are from non-broken platforms)
intrusive (33 of 47 failures are from non-broken platforms)
iostreams (0 of 2 failures are from non-broken platforms)
lambda (1)
math (0 of 1 failures are from non-broken platforms)
multi_index (1 of 2 failures are from non-broken platforms)
numeric/interval (1)
optional (3)
program_options (0 of 12 failures are from non-broken platforms)
property_map (0 of 2 failures are from non-broken platforms)
ptr_container (1 of 3 failures are from non-broken platforms)
python (7 of 9 failures are from non-broken platforms)
range (16 of 26 failures are from non-broken platforms)
rational (0 of 2 failures are from non-broken platforms)
regex (0 of 2 failures are from non-broken platforms)
serialization (230 of 1484 failures are from non-broken platforms)
signals (0 of 10 failures are from non-broken platforms)
spirit (8 of 14 failures are from non-broken platforms)
system (6 of 22 failures are from non-broken platforms)
test (0 of 2 failures are from non-broken platforms)
thread (0 of 26 failures are from non-broken platforms)
tr1 (48 of 64 failures are from non-broken platforms)
type_traits (1 of 5 failures are from non-broken platforms)
utility (0 of 2 failures are from non-broken platforms)
wave (6 of 11 failures are from non-broken platforms)
xpressive (45)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|algorithm/string|
join: hp_cxx-71_006_tru64
replace: hp_cxx-71_006_tru64
split: borland-5.6.4* borland-5.8.2*
|asio|
basic_datagram_socket: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
basic_datagram_socket_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
basic_deadline_timer: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
basic_deadline_timer_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
basic_socket_acceptor: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
basic_socket_acceptor_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
basic_stream_socket: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
basic_stream_socket_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
buffered_read_stream: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
buffered_read_stream_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
buffered_stream: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
buffered_stream_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
buffered_write_stream: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
buffered_write_stream_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
datagram_socket_service: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
datagram_socket_service_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
deadline_timer: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
deadline_timer_select: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
deadline_timer_service: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
deadline_timer_service_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
error: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
error_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
io_service: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
io_service_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_address: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_address_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_address_v4: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_address_v4_select: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_address_v6: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_address_v6_select: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_basic_endpoint: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_basic_endpoint_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_basic_resolver: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_basic_resolver_iterator: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_basic_resolver_iterator_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_basic_resolver_query: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_basic_resolver_query_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_basic_resolver_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_host_name: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_host_name_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_multicast: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_multicast_select: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_resolver_query_base: hp_cxx-71_006_tru64
ip_resolver_query_base_select: hp_cxx-71_006_tru64
ip_resolver_service: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_resolver_service_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_tcp: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_tcp_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_udp: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_udp_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_unicast: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_unicast_select: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_v6_only: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
ip_v6_only_select: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
is_read_buffered: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
is_read_buffered_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
is_write_buffered: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
is_write_buffered_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
read: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
read_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
read_until: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
read_until_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
socket_acceptor_service: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
socket_acceptor_service_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
socket_base: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
socket_base_select: acc borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
strand: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
strand_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
stream_socket_service: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
stream_socket_service_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
time_traits: hp_cxx-71_006_tru64
time_traits_select: hp_cxx-71_006_tru64
write: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
write_select: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
|assign|
static_list_of: borland-5.6.4* borland-5.8.2*
|bimap|
assign: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
foreach: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
lambda: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
property_map: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
range: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
serialization: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_assign: borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_convenience_header: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_extra: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_info: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_lambda: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_list_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_modify: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_multiset_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_mutable: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_operator_bracket: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_ordered: borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_project: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_property_map: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_range: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_sequenced: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_serialization: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_set_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_unconstrained: borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_unordered: borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_unordered_multiset_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_unordered_set_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_bimap_vector_of: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
test_mutant: borland-5.6.4* borland-5.8.2*
test_mutant_relation: borland-5.6.4* borland-5.8.2*
test_structured_pair: borland-5.6.4* borland-5.8.2*
test_tagged: borland-5.6.4* borland-5.8.2*
typeof: borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 sun-5.8* sun-5.8*
xpressive: borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
|bind|
bind_function_test: borland-5.6.4* borland-5.8.2*
bind_placeholder_test: borland-5.6.4* borland-5.8.2*
|circular_buffer|
base_test: hp_cxx-71_006_tru64
bounded_buffer_comparison: borland-5.6.4* borland-5.8.2*
space_optimized_test: hp_cxx-71_006_tru64
|concept_check|
class_concept_fail_expected: sun-5.8* sun-5.8*
old_concept_class_fail: borland-5.6.4* borland-5.8.2* gcc-3.3.6 sun-5.8* sun-5.8*
old_concept_function_fail: borland-5.6.4* borland-5.8.2* gcc-3.3.6 sun-5.8* sun-5.8*
stl_concept_check: hp_cxx-71_006_tru64
usage_fail: sun-5.8* sun-5.8*
where_fail: sun-5.8* sun-5.8*
|config|
config_test: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0*
math_info: borland-5.6.4*
|conversion|
lexical_cast_loopback_test: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0* sun-5.8* sun-5.8*
lexical_cast_test: borland-5.6.4* borland-5.8.2* sun-5.8* sun-5.8*
|date_time|
testgreg_serialize: borland-5.6.4* borland-5.8.2*
testgreg_serialize_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
testgreg_serialize_xml: borland-5.6.4* borland-5.8.2*
testtime_serialize: borland-5.6.4* borland-5.8.2*
testtime_serialize_std_config: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml_std_config: borland-5.6.4* borland-5.8.2*
|dynamic_bitset|
dyn_bitset_unit_tests3: hp_cxx-71_006_tru64
dyn_bitset_unit_tests4: sun-5.8*
|filesystem|
convenience_test: borland-5.6.4* borland-5.8.2*
fstream_test: borland-5.6.4* borland-5.8.2*
large_file_support_test: borland-5.6.4* borland-5.8.2*
operations_test: borland-5.6.4* borland-5.8.2*
path_test: borland-5.6.4* borland-5.8.2*
simple_ls: borland-5.6.4* borland-5.8.2*
|foreach|
array_byref: msvc-7.1
array_byval: msvc-7.1
|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_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*
|gil|
main: acc borland-5.6.4* borland-5.8.2* gcc-3.3.6 hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
|graph|
all_planar_input_files_test: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
basic_planarity_test: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
csr_graph_test: msvc-7.1
cycle_ratio_tests: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0* sun-5.8* sun-5.8*
graphml_test: msvc-8.0*
graphviz_test: msvc-8.0*
kolmogorov_max_flow_test: acc hp_cxx-71_006_tru64
make_biconnected_planar_test: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
make_maximal_planar_test: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
max_flow_test: acc hp_cxx-71_006_tru64
parallel_edges_loops_test: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
transitive_closure_test: hp_cxx-71_006_tru64
|interprocess|
adaptive_node_pool_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
adaptive_pool_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
alloc_example: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
allocexcept_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
cached_adaptive_pool_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
cached_node_allocator_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
condition_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 sun-5.8*
data_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
deque_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_adaptive_pool: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_allocator: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_conditionA: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_conditionB: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_mutexA: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_anonymous_mutexB: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_anonymous_semaphoreA: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_semaphoreB: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_anonymous_upgradable_mutexA: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_anonymous_upgradable_mutexB: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_bufferstream: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_cached_adaptive_pool: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_cached_node_allocator: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_cont: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_contA: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_contB: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_file_mapping: sun-5.8* sun-5.8*
doc_file_mapping2: sun-5.8* sun-5.8*
doc_intrusive: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_ipc_messageA: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_ipc_messageB: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_aligned_allocation: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_allocation_command: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_construction_info: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_external_buffer: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_heap_memory: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_mapped_file: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_multiple_allocation: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_managed_raw_allocation: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_map: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_message_queueA: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_message_queueB: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_move_containers: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_named_allocA: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_named_allocB: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_named_conditionA: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_named_conditionB: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_named_mutex: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_node_allocator: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_offset_ptr: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_private_adaptive_pool: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_private_node_allocator: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_scoped_ptr: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_shared_memory: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_shared_memory2: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
doc_vectorstream: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_where_allocate: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
file_lock_test: msvc-7.1 msvc-8.0*
file_mapping_test: acc sun-5.8* sun-5.8*
flat_map_index_allocation_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
flat_tree_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
intrusive_ptr_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
iset_index_allocation_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
iunordered_set_index_allocation_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
list_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
managed_mapped_file_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
map_index_allocation_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
mapped_file_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
memory_algorithm_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
message_queue_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
mutex_test: hp_cxx-71_006_tru64
named_alloc_example: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
named_condition_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
named_mutex_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
named_recursive_mutex_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
named_semaphore_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
named_upgradable_mutex_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
node_allocator_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
null_index_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
private_adaptive_pool_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
private_node_allocator_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
process_a_example: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
process_a_fixed_example: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 msvc-7.1 sun-5.8* sun-5.8*
process_b_example: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
process_b_fixed_example: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
recursive_mutex_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
semaphore_test: acc hp_cxx-71_006_tru64 sun-5.8*
shared_memory_mapping_test: hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
shared_memory_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
shared_ptr_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
slist_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
string_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
tree_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
unique_ptr_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
upgradable_mutex_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 sun-5.8*
user_buffer_test: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
vector_test: acc darwin-4.0.1 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
vectorstream_test: gcc-3.3.6
|intrusive|
doc_advanced_value_traits: hp_cxx-71_006_tru64
doc_advanced_value_traits2: hp_cxx-71_006_tru64
doc_assoc_optimized_code: hp_cxx-71_006_tru64
doc_auto_unlink: hp_cxx-71_006_tru64
doc_clone_from: hp_cxx-71_006_tru64
doc_entity: hp_cxx-71_006_tru64
doc_erasing_and_disposing: hp_cxx-71_006_tru64
doc_how_to_use: hp_cxx-71_006_tru64
doc_iterator_from_value: hp_cxx-71_006_tru64
doc_list: hp_cxx-71_006_tru64
doc_offset_ptr: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
doc_rbtree_algorithms: hp_cxx-71_006_tru64
doc_set: hp_cxx-71_006_tru64
doc_slist: hp_cxx-71_006_tru64
doc_unordered_set: hp_cxx-71_006_tru64
doc_value_traits: hp_cxx-71_006_tru64
doc_window: hp_cxx-71_006_tru64
list_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
multiset_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
set_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
slist_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
unordered_multiset_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
unordered_set_test: acc hp_cxx-71_006_tru64 sun-5.8* sun-5.8*
|iostreams|
regex_filter_test: borland-5.6.4* borland-5.8.2*
|lambda|
operator_tests_simple: msvc-7.1
|math|
common_factor_test: borland-5.8.2*
|multi_index|
test_modifiers: msvc-7.1 msvc-8.0*
|numeric/interval|
fmod: hp_cxx-71_006_tru64
|optional|
optional_test: darwin-4.0.1 hp_cxx-71_006_tru64
optional_test_inplace: hp_cxx-71_006_tru64
|program_options|
cmdline_test: borland-5.6.4* borland-5.8.2*
cmdline_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*
variable_map_test: borland-5.6.4* borland-5.8.2*
variable_map_test_dll: borland-5.6.4* borland-5.8.2*
|property_map|
dynamic_properties_test: borland-5.6.4* borland-5.8.2*
|ptr_container|
serialization: darwin-4.0.1 sun-5.8* sun-5.8*
|python|
bases: intel-linux-9.0
exec: intel-linux-9.0
import_: intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0*
pointee: intel-linux-9.0
pointer_type_id_test: intel-linux-9.0
pytype_function: hp_cxx-71_006_tru64
|range|
array: msvc-7.1
iterator_range: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0* sun-5.8* sun-5.8*
reversible_range: msvc-7.1
string: hp_cxx-71_006_tru64 msvc-7.1
sub_range: acc borland-5.6.4* borland-5.8.2* darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 msvc-7.1 sun-5.8* sun-5.8*
|rational|
rational_test: borland-5.6.4* borland-5.8.2*
|regex|
static_mutex_test: 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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_binary_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_text_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_text_warchive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_xml_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_class_info_load_xml_warchive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_exception: borland-5.6.4* borland-5.8.2*
test_demo_exception_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_polymorphic: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_portable_archive: borland-5.6.4* borland-5.8.2* darwin-4.0.1
test_demo_portable_archive_dll: borland-5.8.2* darwin-4.0.1
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_xml: borland-5.6.4* borland-5.8.2*
test_demo_xml_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_demo_xml_load: intel-linux-9.0
test_demo_xml_load_dll: msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_binary_archive: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
test_exported_binary_archive_dll: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_text_archive: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
test_exported_text_archive_dll: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_text_warchive: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
test_exported_text_warchive_dll: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_xml_archive: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
test_exported_xml_archive_dll: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 msvc-7.1 msvc-8.0* msvc-8.0*
test_exported_xml_warchive: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
test_exported_xml_warchive_dll: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_text_archive: borland-5.6.4* borland-5.8.2*
test_list_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_text_warchive: borland-5.6.4* borland-5.8.2*
test_list_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_xml_archive: borland-5.6.4* borland-5.8.2*
test_list_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_list_xml_warchive: borland-5.6.4* borland-5.8.2*
test_list_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_map_text_archive: borland-5.6.4* borland-5.8.2*
test_map_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_map_text_warchive: borland-5.6.4* borland-5.8.2*
test_map_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_map_xml_archive: borland-5.6.4* borland-5.8.2*
test_map_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_map_xml_warchive: borland-5.6.4* borland-5.8.2*
test_map_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_binary_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_text_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_text_warchive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_xml_archive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
test_no_rtti_xml_warchive_dll: msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_non_default_ctor_binary_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_binary_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_non_intrusive_binary_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_binary_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_binary_archive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_binary_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_text_archive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_text_warchive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_xml_archive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_polymorphic_xml_warchive: borland-5.6.4* borland-5.8.2* msvc-8.0*
test_polymorphic_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_private_ctor: borland-5.6.4* borland-5.8.2*
test_private_ctor_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_binary_archive: borland-5.8.2*
test_set_binary_archive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_text_archive: borland-5.8.2*
test_set_text_archive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_text_warchive: borland-5.8.2*
test_set_text_warchive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_xml_archive: borland-5.8.2*
test_set_xml_archive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_set_xml_warchive: borland-5.8.2*
test_set_xml_warchive_dll: borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_valarray_text_archive: borland-5.6.4* borland-5.8.2*
test_valarray_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_valarray_text_warchive: borland-5.6.4* borland-5.8.2*
test_valarray_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_valarray_xml_archive: borland-5.6.4* borland-5.8.2*
test_valarray_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_valarray_xml_warchive: borland-5.6.4* borland-5.8.2*
test_valarray_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_binary_archive: borland-5.6.4*
test_variant_binary_archive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_text_archive: borland-5.6.4*
test_variant_text_archive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_text_warchive: borland-5.6.4*
test_variant_text_warchive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_xml_archive: borland-5.6.4*
test_variant_xml_archive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
test_variant_xml_warchive: borland-5.6.4*
test_variant_xml_warchive_dll: borland-5.6.4* msvc-7.1 msvc-8.0* msvc-8.0*
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* msvc-7.1 msvc-8.0* msvc-8.0*
test_vector_text_archive: borland-5.6.4* borland-5.8.2*
test_vector_text_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_vector_text_warchive: borland-5.6.4* borland-5.8.2*
test_vector_text_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_vector_xml_archive: borland-5.6.4* borland-5.8.2*
test_vector_xml_archive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
test_vector_xml_warchive: borland-5.6.4* borland-5.8.2*
test_vector_xml_warchive_dll: borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0* msvc-8.0*
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*
|spirit|
mix_and_match_trees: sun-5.8* sun-5.8*
numerics_tests: darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0*
numerics_tests_debug: darwin-4.0.1 gcc-3.3.6 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0*
|system|
error_code_test: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 hp_cxx-71_006_tru64
error_code_test_dll: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
error_code_user_test: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64 hp_cxx-71_006_tru64
error_code_user_test_dll: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64
header_only_test: borland-5.6.4* borland-5.8.2*
initialization_test: borland-5.6.4* borland-5.8.2*
system_error_test: borland-5.6.4* borland-5.8.2*
system_error_test_dll: borland-5.6.4* borland-5.8.2*
|test|
boost_check_equal_str: sun-5.8* sun-5.8*
|thread|
test_barrier: borland-5.6.4* borland-5.8.2*
test_barrier_lib: borland-5.6.4* borland-5.8.2*
test_condition: borland-5.6.4* borland-5.8.2*
test_condition_lib: borland-5.6.4* borland-5.8.2*
test_mutex: borland-5.6.4* borland-5.8.2*
test_mutex_lib: borland-5.6.4* borland-5.8.2*
test_once: borland-5.6.4* borland-5.8.2*
test_once_lib: borland-5.6.4* borland-5.8.2*
test_read_write_mutex: borland-5.6.4* borland-5.8.2*
test_read_write_mutex_lib: borland-5.6.4* borland-5.8.2*
test_thread: borland-5.6.4* borland-5.8.2*
test_thread_lib: borland-5.6.4* borland-5.8.2*
test_tss: borland-5.6.4* borland-5.8.2*
|tr1|
std_run_complex_overloads: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0
std_run_random: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0
std_test_regex: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0
std_test_shared_ptr: borland-5.8.2*
std_test_tr1_include: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
std_test_tuple: acc gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
std_test_tuple_tricky: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
test_shared_ptr: borland-5.8.2*
test_tr1_include: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
test_tuple: acc gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
test_tuple_tricky: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
test_utility_std_header: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 sun-5.8* sun-5.8*
|type_traits|
make_signed_test: borland-5.6.4* borland-5.8.2*
make_unsigned_test: borland-5.6.4* borland-5.8.2*
promote_basic_test: hp_cxx-71_006_tru64
|utility|
result_of_test: sun-5.8* sun-5.8*
|wave|
test_re2c_lexer: msvc-7.1 msvc-8.0*
test_slex_lexer: darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0 msvc-7.1 msvc-8.0* msvc-8.0*
testwave_dll: sun-5.8* sun-5.8*
|xpressive|
c_traits: hp_cxx-71_006_tru64
misc1: hp_cxx-71_006_tru64
misc2: hp_cxx-71_006_tru64
multiple_defs: hp_cxx-71_006_tru64
regress: hp_cxx-71_006_tru64
test1: hp_cxx-71_006_tru64
test10: hp_cxx-71_006_tru64
test10u: hp_cxx-71_006_tru64
test11: hp_cxx-71_006_tru64
test11u: hp_cxx-71_006_tru64
test1u: hp_cxx-71_006_tru64
test2: hp_cxx-71_006_tru64
test2u: hp_cxx-71_006_tru64
test3: hp_cxx-71_006_tru64
test3u: hp_cxx-71_006_tru64
test4: hp_cxx-71_006_tru64
test4u: hp_cxx-71_006_tru64
test5: hp_cxx-71_006_tru64
test5u: hp_cxx-71_006_tru64
test6: hp_cxx-71_006_tru64
test6u: hp_cxx-71_006_tru64
test7: hp_cxx-71_006_tru64
test7u: hp_cxx-71_006_tru64
test8: hp_cxx-71_006_tru64
test8u: hp_cxx-71_006_tru64
test9: hp_cxx-71_006_tru64
test9u: hp_cxx-71_006_tru64
test_actions: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0
test_basic_regex: hp_cxx-71_006_tru64
test_cycles: hp_cxx-71_006_tru64
test_dynamic: hp_cxx-71_006_tru64
test_dynamic_grammar: hp_cxx-71_006_tru64
test_non_char: hp_cxx-71_006_tru64
test_regex_compiler: hp_cxx-71_006_tru64
test_regex_primitives: hp_cxx-71_006_tru64
test_static: hp_cxx-71_006_tru64
test_symbols: acc darwin-4.0.1 gcc-3.3.6 hp_cxx-71_006_tru64 intel-linux-9.0
5
7
[ 208 open tickets today, 206 yesterday ]
If you are maintaining a library, and have not logged into the trac system
at <http://svn.boost.org/trac/boost/>, please do so ASAP. Until you do that,
no tickets can be assigned to you, and will remain under "None".
Instructions on working with tickets can be found at:
<http://svn.boost.org/trac/boost/wiki/TicketWorkflow>
and a mapping of user names to "real names" can be found at:
<http://svn.boost.org/trac/boost/report/16>
17 ramey
15 dgregor
13 djowel
12 grafik
12 doug_gregor
12 az_sw_dude
10 rogeeff
9 dave
9 None
7 turkanis
7 nesotto
7 jsiek
6 vladimir_prus
6 anthonyw
6 agurtovoy
5 samuel_krempp
4 witt
4 shammah
4 bemandawes
4 <Blank>
3 pdimov
3 johnmaddock
3 jbandela
3 igaztanaga
3 fcacciola
3 danielw
2 urzuga
2 nasonov
2 jmaurer
2 hubert_holin
2 hkaiser
2 ebf
1 t_schwinger
1 speedsnail
1 samuel_k
1 pavol_droba
1 kaalus
1 guwi17
1 dlwalker
1 aaron_windsor
<Blank> 1033 iostreams::restrict doesn't work on an iostreams::file_source
<Blank> 1070 [iostreams]boost\iostreams\copy.hpp line80 copy_impl
<Blank> 823 Seekable file_descriptor_source /sink?
<Blank> 824 BOOST_IOSTREAMS_HAS_LSEEK64 on Mac OS X
None 1068 Mersenne twister disables streaming for Visual C++
None 1094 Finding the correct library to link (feature request for
pkg-config support)h
None 1187 bcp copy not needed files
None 1222 lambda::ret<T> should declare result_type.
None 1247 Typos in "boost/random/additive_combine.hpp"_ lines 68-69
None 1252 [pool] severe overhead with unaligned sizes.
None 1270 uniform_smallint doesn't compile with lagged_fibonacci
random number generators
None 960 [random] lognormal_distribution problem
None 991 [pool]
aaron_windsor 778 top-level configure is broken
agurtovoy 1001 gcc 4.1.2 segfaults on mpl/test/apply.cpp
agurtovoy 1051 MPL header ordering triggers bug
agurtovoy 1099 unable to iterate through a "non-explicitly-declared" mpl::set
agurtovoy 1215 Boost 1.34.1_ mpl: Wrong workaround detection using
MinGW32 (or.hpp_ line #33)
agurtovoy 588 mpl::remove compile error with gcc 4.1.0
agurtovoy 640 documentation mistake
anthonyw 1154 tss destruction segfaults in conjunction with dlopen/dlclose
anthonyw 1168 [thread] tss crashes randomly
anthonyw 1226 macro TEXT() in GetProcAddress()
anthonyw 1268 xtime_cmp changes to deal with overflow were reverted
anthonyw 876 xtime documentation incomplete
anthonyw 881 errors when build with Apache stdcxx
az_sw_dude 1028 typo in boost header: date_time/time_defs.hpp
az_sw_dude 1078 from_iso_string cannot read the output from to_iso_string
az_sw_dude 1098 Urgent libboost-date-time1.33.1 : bugs on ia64 ?
az_sw_dude 1147 date_time library contains global #define ERROR
az_sw_dude 1160 warning: month_format shadows a member of this
az_sw_dude 1162 warning: ticks shadows a member of this
az_sw_dude 287 wrong usage of ios_base::narrow
az_sw_dude 316 date_time type conversion warning
az_sw_dude 604 from_ftime incorrectly processes FILETIME filled with zeros
az_sw_dude 642 operator<< for gregorian::date_duration not found
az_sw_dude 889 Insane Dependencies
az_sw_dude 890 date_time library supports only the current dst rule
bemandawes 1230 mbstate uninitialized
bemandawes 559 linker error mingw 3.4.5
bemandawes 752 directory_iterator doesn't work with catch
bemandawes 897 exists() throws exeption on existing but locked file on wind
danielw 1044 Argument pack inaccessable in a functions return type
danielw 1054 Parameter takes an "infinite" amount of time to compile
with the Intel compiler.
danielw 1097 keyword.hpp generates many warnings C4180: qualifier
applied to function type has no meaning; ignored
dave 1010 linking boost.python on freebsd
dave 1019 iterator_facade::pointer should be the return type of
operator-> (DR 445)
dave 1085 Python rules for compiling in Mac OS X
dave 1096 Tutorial needs updating for BBv2
dave 1179 [boost.python] can not export a union in VC2005sp1
dave 1181 [boost.python] can modify enum value
dave 1246 breakage in boost::python svn trunk
dave 865 Use of C++0x keyword as identifier
dave 910 gcc strict-aliasing problems with python
dgregor 1002 [iostreams] close_impl<closable_tag> does not comply with spec
dgregor 1003 [iostreams] copy-paste error in typedefs for wchar
multichar_filters
dgregor 1011 amd64: #error Boost.Numeric.Interval: Please specify
rounding control mechanism.
dgregor 1139 [iostreams] Regex filter segfaults when zero matches found
dgregor 1140 boost::iostreams linked_streambuf bug
dgregor 1149 Minor doc error in basic_null_device
dgregor 1164 Floyd Warshall broken with unsigned edge weights
dgregor 1185 iostreams::direct_streambuf<T_Tr>::is_open always
returns false if output iterator is not null
dgregor 1192 [boostbook] problem when two files have the same name
dgregor 1199 configure doesn't work with path containing whitespaces (MacOS X)
dgregor 1218 Boostbook error when generating documentation for a
member typedef with a description
dgregor 1232 mapped_file_source::is_open() is broken under windows
dgregor 556 Bundled graph properties
dgregor 732 Johnson All-Pairs needs better "no path" information
dgregor 736 Const correctness violation
djowel 1170 Emit Warnings instead of # symbols in the syntax highlighter
djowel 1171 Quickbook title output
djowel 1172 non-utf
djowel 1176 Space after inline code
djowel 1206 Escaping from within code?
djowel 1273 CR+LF newlines in position_iterator
djowel 1276 spirit problem with _GLIBCXX_DEBUG
djowel 1277 Closing section like [pre with } causes Quickbok to crash
djowel 1280 sections in imported source files get put inside <para>
elements in docbook output
djowel 1281 Quickbook produces invalid BoostBook/DocBook XML
djowel 241 Miss " = ParserT()"
djowel 314 spirit insert_key_actor.hpp
djowel 664 crash in boost::spirit::parse
dlwalker 613 boost/crc.hpp uses non-standard conforming syntax
doug_gregor 1021 [Graph][reverse_graph] Problem using reverse_graph
adapter with an adapted user defined graph
doug_gregor 1076 compile error: disconnecting struct with
operator()() doesn't work in VS2005 SP1
doug_gregor 375 LEDA graph adaptors do not handle hidden nodes properly
doug_gregor 402 random_vertex/random_edge are unnecessarily inefficient
doug_gregor 403 Document copy_component
doug_gregor 447 reverse_graph and constness of property maps
doug_gregor 708 Dijkstra no_init version should not require VertexListGraph
doug_gregor 733 Numbered headers don't work with "preferred" syntax
doug_gregor 735 Fruchterman-Reingold grid performance can be improved
doug_gregor 738 Memory leaks with signal::connect?
doug_gregor 829 Implicit graph not implement
doug_gregor 852 Problem with Boost and GCC 4.1
ebf 965 [doc] boost::variant tutorial - final example uses v1_v2
should be seq1_seq2
ebf 993 Variant should use least common multiple of alignments_
rather than maximum
fcacciola 1217 value_initialized leaves data uninitialized_ when using MSVC
fcacciola 617 Numeric Conversion Documentation minor bug
fcacciola 818 No zero-argument in_place()
grafik 1023 inspect
grafik 1041 Cygwin requires PATH setting.
grafik 1062 Cygwin install stage fails with combination of patches
grafik 1146 KAI Referenced in compiler status acknowledgements
grafik 1233 Boost website still refers to CVS
grafik 1244 Broken links to unit test examples
grafik 546 boost.build needs fixes for HP/UX
grafik 616 Boost Jam_ and non english directorys
grafik 896 <native-wchar_t>off does not work when build with vc-8.0
grafik 959 linking fails when Boost is compiled with STLport 5.1.* on
Linux (names mismatch)
grafik 977 bjam crashes when compiled with gcc 4.2
grafik 986 Problem building Python modules on boost 1.34.0
guwi17 1237 Resizing symmetric matrices
hkaiser 1077 Spirit integer parser does not always detect integer overflow
hkaiser 1079 boost-1.34.0 fails to compile. concept checks not satisfied.
hubert_holin 162 Cannot compile octonion_test.cpp because of bug in sinc.hpp
hubert_holin 647 octonion documentation bug
igaztanaga 1080 boost::interprocess win32 global file mapping issue
igaztanaga 1210 interprocess::barrier hangs during second use under
linux (boost 1.33.1)
igaztanaga 1231 interprocess_condition (emulated) hangs after notify_all().
jbandela 283 Compiler error for tokenizer on Solaris
jbandela 501 token_iterator::at_end() result is inversed
jbandela 665 bug in char_separator
jmaurer 351 Diff in state of mersenne_twister gen between GCC3.41 & CW9
jmaurer 819 uniform_int<> with type's maximum availaible range error
johnmaddock 1081 Empty string rejected as perl-style regex
johnmaddock 1083 boost_regex 1.34.0 uses ICU library without linking to it
johnmaddock 1148 boost_1_34_1 regex library compile failure on aix with xlv
jsiek 416 Spelling of Edmonds-Karp-Algorithm
jsiek 575 Calling subgraph::global_to_local on a root graph
jsiek 636 strange compiling problem for transitive_closure
jsiek 813 concept_check.hpp unused variable warning
jsiek 815 remove_edge core dumps on self-circle
jsiek 875 No iterator based constructor for adjacency_matrix
jsiek 900 graphml reader namespace handling is broken
kaalus 1184 property_tree assignment (operator) bug
nasonov 1220 lexical_cast requires RTTI
nasonov 754 boost::any - typeid comparison across shared boundaries
nesotto 1145 Small bugs in Boost.Range documentation
nesotto 1284 [range] sub_range assignment issue
nesotto 471 boost.range and "const char[]".
nesotto 518 [Boost.Range]boost::const_begin calls non-qualified 'begin'
nesotto 723 local_time_facet error in VS2005 Win2003
nesotto 730 The ptr_map iterator cannot be dereference to value type
nesotto 807 boost::assignment documentation: mathematical "typo"
pavol_droba 1152 rle_example fails
pdimov 1106 shared_ptr<T> should not convert to shared_ptr<U> when T*
doesn't convert to U*
pdimov 1108 shared_ptr does not compile under g++ with -fno-rtti
pdimov 997 error in boost::bind doc
ramey 1036 assert failure in oserializer.hpp:418
ramey 1038 "<" and ">" should be excaped in xml_oarchive
ramey 1086 Serialization of weak_ptr produces invalid XML
ramey 1089 missing boost::serialization::make_nvp in pointer container library
ramey 1121 xml_archive_exception is missing seperate header file_ and
documentation mismatch
ramey 1137 Virtual destructor is missing
ramey 1141 Dangerious operator<< for wostream
ramey 1142 boost/serialization/optional doesn't include necessary header
ramey 1223 boost::serialization chokes on correcly formatted empty XML element
ramey 1267 Assertion `new_cid == cid' failed in basic_iarchive
ramey 1285 [serialization] problem when including shared_ptr_132.hpp
ramey 1286 Missing/Incorrect dllimport/dllexport directives prevent
Windows DLLs from building
ramey 757 xml serialization fails when using namespace
ramey 878 error C2039: 'mbstate_t' : is not a member of 'std'
ramey 961 boost::basic_binary_oprimitive not instantiated correctly
ramey 968 xml_grammar - incorrect define char
ramey 969 basic_binary_iprimitive::load_binary bug
rogeeff 1030 execution_monitor.ipp #warning directive breaks
compilation on MSVC 8.0
rogeeff 1032 typo in Boost.Test documentation
rogeeff 1050 BOOST_CHECK_CLOSE_FRACTION documentation missing
rogeeff 1060 no example sources in online docs for Boost::Test
rogeeff 1212 Template fixtures
rogeeff 607 Log level names wrong in documentation
rogeeff 842 typo in auto_unit_test.hpp Revision 1.17
rogeeff 893 grammatical error in error message
rogeeff 956 Doc error in test examples.
rogeeff 962 Missing links in Test library documentation
samuel_k 585 64 bit compile warning/error for boost::format
samuel_krempp 1195 patch: boost/format/parsing.hpp does not compile
if BOOST_NO_LOCALE_ISDIGIT is defined
samuel_krempp 1196 Patch: when BOOST_NO_STD_LOCALE is not defined_
boost/format/internals.hpp fails to compile.
samuel_krempp 1278 declaration of 'str' shadows a member of 'this'
samuel_krempp 704 format zero length string msvc-8
samuel_krempp 859 boost::format ignores a user defined locale
shammah 284 pool::purge_memory() does not reset next_size
shammah 290 perfomance: memory cleanup for pool takes too long
shammah 386 boost::pool_allocator breaks with vector of vectors
shammah 88 ct_gcd_lcm.hpp compilation error
speedsnail 1138 Problems with TSS and static thread library
t_schwinger 1100 Building boost.function_types fails cvs rev-1.1_ no
chdir command in bash
turkanis 525 problem with boost::iostreams when compiled with Visual C++
turkanis 699 Changing size of memory-mapped file on Windows
turkanis 786 bug in iostreams/copy.hpp line 81
turkanis 791 iostreams::tee_filter is for output only
turkanis 817 Performance problem in iostreams
turkanis 822 Incorrect usage of bad_write()_ bad_seek() etc.
turkanis 856 iostreams file_descriptor::write fails under Win32
urzuga 574 [boost::lambda] Compile error with libstdc++ debug mode
urzuga 781 Lambda: (_1 + "y")(string("x")) Doesn't Compile
vladimir_prus 1165 more quoting problems
vladimir_prus 1228 bug in toolset gcc + HP/UX PA-RSIC
vladimir_prus 1274 Useless error message
vladimir_prus 1275 boost::program_options::validation_error::what() is private
vladimir_prus 469 multitoken broken
vladimir_prus 689 [program_options] Endless loop with long default arguments
witt 1046 Boost.Python quickstart instructions mention nonexistent target
witt 834 Homepage regression links
witt 957 The "Getting Started" page does not mention the stdlib option
witt 973 zip_iterator has value_type == reference
--
-- Marshall
Marshall Clow Qualcomm, Inc. <mailto:mclow@qualcomm.com>
The famous British scientist, Lord Kelvin, said: "When you measure
what you are speaking about and express it in numbers, you know
something about it, but when you cannot (or do not) measure it, when
you cannot (or do not) express it in numbers, then your knowledge is
of a meagre and unsatisfactory kind."
1
0