Boost
Threads by month
- ----- 2025 -----
- 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
December 2005
- 184 participants
- 292 discussions
Hello!
Some days ago I've faced with very strange problem with
boost::serialization
it doesn't compile, though docs says that it should.
After some research I've found that changing the order of
header files included fixes the problem.
It can be illustrated on a base of the demo.cpp program
included in distribution:
The original order:
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
#include <boost/serialization/base_object.hpp>
#include <boost/serialization/utility.hpp>
#include <boost/serialization/list.hpp>
The modified order [doesn't compile!]:
#include <boost/serialization/base_object.hpp>
#include <boost/serialization/utility.hpp>
#include <boost/serialization/list.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
It is crucial to include these files first
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
it is because of many files (may be indirectly) include
boost/serialization/type_info_implementation.hpp header
that uses BOOST_SERIALIZATION_DEFAULT_TYPE_INFO macro without
defining it, and
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
headers define this macro in some way.
to conclude: I have found it very disappointing that changing
of order of included headers changes code correctness so
dramatically. I want it to be fixed in some way.
Thanks for great and incredibly helpful library anyway,
Oleg Abrosimov.
PS: The compiler (VC7.1) output:
Compiling...
demo.cpp
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(131)
: error C2027: use of undefined type
'boost::serialization::extended_type_info_null<T>'
with
[
T=bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(131)
: see reference to class template instantiation
'boost::serialization::extended_type_info_null<T>' being
compiled
with
[
T=bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(128)
: while compiling class-template member function 'bool
boost::archive::detail::oserializer<Archive,T>::is_polymorphic(void)
const'
with
[
Archive=boost::archive::text_oarchive,
T=bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(264)
: see reference to class template instantiation
'boost::archive::detail::oserializer<Archive,T>' being
compiled
with
[
Archive=boost::archive::text_oarchive,
T=bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(263)
: while compiling class-template member function 'void
boost::archive::detail::save_non_pointer_type<Archive,T>::save_standard::invoke(Archive
&,const bus_schedule &)'
with
[
Archive=boost::archive::text_oarchive,
T=bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(322)
: see reference to class template instantiation
'boost::archive::detail::save_non_pointer_type<Archive,T>::save_standard'
being compiled
with
[
Archive=boost::archive::text_oarchive,
T=bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(310)
: while compiling class-template member function 'void
boost::archive::detail::save_non_pointer_type<Archive,T>::invoke(Archive
&,const bus_schedule &)'
with
[
Archive=boost::archive::text_oarchive,
T=bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(536)
: see reference to class template instantiation
'boost::archive::detail::save_non_pointer_type<Archive,T>'
being compiled
with
[
Archive=boost::archive::text_oarchive,
T=bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\basic_text_oarchive.hpp(78)
: see reference to function template instantiation 'void
boost::archive::save<Archive,T>(Archive &,T &)' being compiled
with
[
Archive=boost::archive::text_oarchive,
T=const bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\interface_oarchive.hpp(78)
: see reference to function template instantiation 'void
boost::archive::basic_text_oarchive<Archive>::save_override<T>(T
&,int)' being compiled
with
[
Archive=boost::archive::text_oarchive,
T=const bus_schedule
]
demo.cpp(286) : see reference to function template
instantiation 'Archive
&boost::archive::detail::interface_oarchive<Archive>::operator
<<<const bus_schedule>(T &)' being compiled
with
[
Archive=boost::archive::text_oarchive,
T=const bus_schedule
]
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(131)
: error C2146: syntax error : missing ';' before identifier
'typex'
D:\home\olegabr\devel\boost_1_33_1\boost\archive\detail\oserializer.hpp(131)
: error C2065: 'typex' : undeclared identifier
2
1
> I happen to
> think that the fact many people have been trained to think about sockets
synchronously is most definitely for the worse.
Totally agree
>> I just want to point out that async reading and writing could
>> be a function of an async I/O demuxer and not the socket
>> itself. The socket could be passed to the demuxer and not
>> vice versa.
> The above design is something I can fundamentally disagree with
> ;) That sort of design, in my opinion, relegates asynchronous
> operations to "second class citizens".
I'm not religious about this, but it could be argued that it would put
sync and async on the same level. For instance you could consider the
POSIX interface to be os::sync_io::write(fd, buffer, bytes) and the
os::sync_io is just left out. Then my interface would be
os::async_demuxer::write(fd, buffer, bytes);
But honestly this isn't something that concerns me.
> There is a relatively straightforward mapping between one and
> the other. In the future I want to exploit this mapping further
> by investigating the use of expression templates (perhaps
> similar to Boost.Lambda) to permit the encoding of a sequence of
> operations in a synchronous programming style. The operations
> could then be executed either synchronously or asynchronously as needed.
Not to take away from asio (which I think is great BTW), but before
jumping into discussion about expression templates, I want to point out
that accepting handlers as template parameters and passing them by value
isn't free in asio. The end result is a dynamic copy of the handler per
operation in a system with potentially thousands of operations/second.
This is going to make potential pooling inefficient because the library
doesn't know what size and how many handlers are used until run time (what
happens if one large handler is queued along with a bunch of small ones?).
The handler functions are called via a function pointer, so there isn't
any performance advantage by passing handler functors by value, and the
deferred nature of async i/o makes compile time binding impossible (ok I
shouldn't say impossible with this group, but extremely unlikely).
I'm going to discuss this more in my review, but there is a significant
amount of overhead that is an artifact of the value semantics. I think a
parallel interface which accepts handlers by reference (or pointer) should
be considered. The result would be that the user could specify the same
handler instance for multiple operations, and asio could pool fixed sized
queue nodes. I suspect that in applications handling a large number of
connections the result would be improved reliability, performance, and in
some cases lower memory usage.
Anybody that's interested in the *nix implementation of this should look
at detail/reactor_op_queue.hpp, which is an interesting read. The
allocation I'm discussing happens in enqueue_operation(). Similar
allocations happen in win_iocp_socket_service.hpp and
win_iocp_demuxer_service. I think the allocation for value functors could
be done in a cross platform area of the library, and a concrete handler
object pointer could be passed to platform specific implementations which
allocate fixed sized structures from pools.
Other than that concern with memory management, I become more impressed by
the library the more time I spend with it. It is really a great piece of
work.
Cheers,
Christopher
1
0
Here is the code I am using (the problem also occurs with the
simple_ls.cpp sample)...
#include <iostream>
#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/path.hpp"
namespace fs = boost::filesystem;
int main( int argc, char* argv[] )
{
fs::path dir( "somedir" );
fs::directory_iterator end;
for( fs::directory_iterator i( dir ); i != end; ++i )
{
std::cout << dir->leaf() << std::endl;
}
return 0;
}
The problem is that once the program finds a file at least 22 characters
long, it will not print any filenames longer than first file correctly.
In "somedir" are several long filenames. Here is the contents of the
directory in the order the files were created:
somereallyreallylongfilename
somereallylongfilename
someotherreallylongfilename
somereallyreallylongfilenam3
somereallyreallylongfilenames
The program outputs:
somereallyreallylongfilename
somereallylongfilename
someotherreallylongfilename
somereallyreallylongfilenam3
somereallyreallylongfi (here the output stops and goes back to
my prompt)
Anyone else had this problem?
Thanks,
Mike
2
1
I'm working on my review and I want to make sure I am using the correct
terminology.
There two sorts of asynchronous calls that can be made.
The first is a "operation" which results in one trip through the
dispatcher. For instance asio::socket_stream::write_some(). Internally
these are stored in operation classes, hence the terminology.
The second I'm calling a "request" which results in one or more
"operations" to occur before the user handler is dispatched. For instance
asio::async_write() calls asio::stream_socket::write_some() one or more
times.
Does that sound right?
2
1
Good <time-of-day>!
It would be nice to have a utility for walking the filesystem tree.
Naive recursive implementation will not work because there may be cycles
in filesystem (due to hard/soft links and 'map' feature of 'mount').
PS: What's the status of i18ned filesystem library?
--
With respect,
Alex Besogonov (cyberax(a)elewise.com)
2
1
When building Boost_1_33_1 on MacOSX 10.4 with Darwin tools (gcc
4.0.1), if I try to build with dynamic linking enabled (i.e.
"<runtime-link>dynamic" in the bjam command), there are link-time
failures for the three libraries that are part of Boost.Test. I think
this is likely the same as a known problem with NT mentioned in
recent email from Gennadiy: the prg_exec_monitor and
test_exec_monitor libraries fail because __Z9test_mainiPPc is
undefined, while the unit_test_framework library fails due to
__Z20init_unit_test_suiteiPPc being undefined.
It looks like the Jamfile for Boost.Test has a workaround for NT
here, which presumably needs to be extended to MacOSX as well. There
is a block of code in libs/test/build/Jamfile that looks like this:
local TEST_DLLs ;
if ! $(NT) && ( ! $(UNIX) || $(OS) != CYGWIN )
{
TEST_DLLs = TRUE ;
}
It looks like the conditional there needs to also be false for
MacOSX. After grovelling around in the jam configuration, it looked
like the necessary change was to replace
$(OS) != CYGWIN
with
( $(OS) != CYGWIN && $(OS) != MACOSX )
i.e. the test should be
if ! $(NT) && ( ! $(UNIX) || ( $(OS) != CYGWIN && $(OS) != MACOSX ))
Unfortunately, that change doesn't seem to be sufficient to disable
the attempt to build dll's for Boost.Test. I have no idea why, and no
idea how to figure that out, being largely unfamiliar with jam and
Jamfiles.
Alternatively, is there a way from the bjam command to indicate that
I want <runtime-link>dynamic except for some specific set of
libraries? (I know how to exclude libraries completely, which would
probably solve my problem for prg_exec_monitor and test_exec_monitor,
since we aren't using them, but doesn't deal with the
unit_test_framework library, which I do need.)
It would seem from Gennadiy's recent burst of messages that this may
no longer a problem or about to no longer be a problem on CVS HEAD,
but we're not prepared to go there and would prefer a patch to the
1.33.1 release. Sorry I didn't notice this when checking out the
release candidate, but this platform has only just been bumped up in
my priorities enough for me to start trying it.
2
2
----Original Message----
From: Markus Schöpflin [mailto:markus.schoepflin@comsoft.de]
> (std::min)(it->m_alloc.size, (unsigned)8 )
> I think the (unsigned)8 should actually read
> static_cast<std::size_t>(8),
> or perhaps just use (std:min<std::size_t>) instead.
I presume the parens around std::min are to prevent VC expanding the "min"
macro. If so, then adding the expliction specialization should do that
anyway, so the code can read:
std::min<std::size_t>(it->m_alloc.size, 8 )
Which remarkably is only one character longer than the unfixed code (and
doesn't have a c-style cast).
--
Martin Bonner
Martin.Bonner(a)Pitechnology.com
Pi Technology, Milton Hall, Ely Road, Milton, Cambridge, CB4 6WZ,
ENGLAND Tel: +44 (0)1223 441434
2
1
Hi.
I wondered what the reason that there is a 'operator=(auto_ptr<Y>&)' but
there isn't any 'void reset(auto_ptr<Y>&'. This seems to me as asymmetry.
At first I thought the reason that reset(Y*) is supplied instead of
operator=(Y*), is that Y* assignment needs to be explicit (as the
constructor is explicit) and operator= doesn't allow explicity (is there
such a word?). But if this assumtion is correct, then there is
contradiction between the constructor for auto_ptr, which is explicit,
and the operator= for auto_ptr, which is not explicit. Am I talking
nonsense?
Thanks,
Yuval
3
8
Six weeks ago: 94 open bugs
Five weeks ago: 93 open bugs
Four weeks ago: 95 open bugs.
Three weeks ago: 77 open bugs.
Two week ago: 70 open bugs
One week ago: 64 open bugs
Today: 65 open bugs
Now that 1.33.1 has been released, let's get these bugs cleaned up!
Thank you for your cooperation!
If you think that a bug has been assigned incorrectly, please let me know.
Bug counts per assignee:
Mike Glassford 13
Doug Gregor 8
Stephen Cleary (shammah) 6
Jonathan Turkanis 4
Joerg Walter 4
Beman Dawes 3
Joel de guzman (djowel) 3
Jeff Garland (az_sw_dude) 3
Gennadiy Rozental (rogeeff) 3
Jeremy Siek 3
John R. Bandela 2
Eric Friedman (ebf) 2
Thorsten Ottosen (nesotto) 2
Vladimir Prus 2
Kevlin Henney 1
Hubert Holin 1
Samuel Kremp 1
Jens Maurer 1
John Maddock 1
Rene Rivera (grafik) 1
Daniel Wallin 1
Here are the currently opened bugs, sorted by assignee.
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: wrong usage of ios_base::narrow
Bug #: 989487
<http://sourceforge.net/tracker/index.php?func=detail&aid=989487&group_id=75…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: date_time type conversion warning
Bug #: 1069225
<http://sourceforge.net/tracker/index.php?func=detail&aid=1069225&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: local_adjustor::utc_to_local throws 'Time label invalid'
Bug #: 1220011
<http://sourceforge.net/tracker/index.php?func=detail&aid=1220011&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: clock is not portable
Bug #: 788762
<http://sourceforge.net/tracker/index.php?func=detail&aid=788762&group_id=75…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: boost::filesystem::exists has bugs with UNC paths
Bug #: 1164057
<http://sourceforge.net/tracker/index.php?func=detail&aid=1164057&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: Problems with native_file_string() on windows
Bug #: 1378631
<http://sourceforge.net/tracker/index.php?func=detail&aid=1378631&group_id=7…>
Assignee: daniel_wallin <http://sourceforge.net/users/daniel_wallin/>
Summary: [Parameter] Docco error section 2.7.2
Bug #: 1378446
<http://sourceforge.net/tracker/index.php?func=detail&aid=1378446&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: EdgeListS = setS for adjacency_list does not work
Bug #: 1163077
<http://sourceforge.net/tracker/index.php?func=detail&aid=1163077&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: LEDA graph adaptors do not handle hidden nodes properly
Bug #: 1168431
<http://sourceforge.net/tracker/index.php?func=detail&aid=1168431&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: random_vertex/random_edge are unnecessarily inefficient
Bug #: 1204684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1204684&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Document copy_component
Bug #: 1204688
<http://sourceforge.net/tracker/index.php?func=detail&aid=1204688&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: reverse_graph and constness of property maps
Bug #: 1246336
<http://sourceforge.net/tracker/index.php?func=detail&aid=1246336&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: html docs frequently missing key words
Bug #: 1294420
<http://sourceforge.net/tracker/index.php?func=detail&aid=1294420&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: EdgeListS = has_setS for adjacency_list does not work
Bug #: 1352049
<http://sourceforge.net/tracker/index.php?func=detail&aid=1352049&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: predicates without default constructor fail to compile (2)
Bug #: 1353875
<http://sourceforge.net/tracker/index.php?func=detail&aid=1353875&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: Miss ' = ParserT()'
Bug #: 907299
<http://sourceforge.net/tracker/index.php?func=detail&aid=907299&group_id=75…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: spirit insert_key_actor.hpp
Bug #: 1059936
<http://sourceforge.net/tracker/index.php?func=detail&aid=1059936&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: Another config correction for Sun C++
Bug #: 1220782
<http://sourceforge.net/tracker/index.php?func=detail&aid=1220782&group_id=7…>
Assignee: ebf <http://sourceforge.net/users/ebf/>
Summary: boost::blank - missing operators
Bug #: 1191356
<http://sourceforge.net/tracker/index.php?func=detail&aid=1191356&group_id=7…>
Assignee: ebf <http://sourceforge.net/users/ebf/>
Summary: [variant] Bug in recursive_wrapper_fwd.hpp
Bug #: 1359257
<http://sourceforge.net/tracker/index.php?func=detail&aid=1359257&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: timeconv.inl to_duration() nsec error
Bug #: 548104
<http://sourceforge.net/tracker/index.php?func=detail&aid=548104&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: Solaris - once.cpp compile error
Bug #: 549162
<http://sourceforge.net/tracker/index.php?func=detail&aid=549162&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: AIX 4.3 SIGSEGV at thread termination
Bug #: 551577
<http://sourceforge.net/tracker/index.php?func=detail&aid=551577&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: boost::threads uses msvc only function?
Bug #: 568951
<http://sourceforge.net/tracker/index.php?func=detail&aid=568951&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: BCB6 throw EExternelException
Bug #: 596149
<http://sourceforge.net/tracker/index.php?func=detail&aid=596149&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: thread_cleanup problems
Bug #: 649291
<http://sourceforge.net/tracker/index.php?func=detail&aid=649291&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: Mac implementation of threads is CPU hog
Bug #: 885045
<http://sourceforge.net/tracker/index.php?func=detail&aid=885045&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: xtime_cmp: use comparison not subtraction
Bug #: 993272
<http://sourceforge.net/tracker/index.php?func=detail&aid=993272&group_id=75…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: condition variables and recursive_mutex
Bug #: 1072605
<http://sourceforge.net/tracker/index.php?func=detail&aid=1072605&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: compiler error on Mac implementation of threads
Bug #: 1201779
<http://sourceforge.net/tracker/index.php?func=detail&aid=1201779&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: timeconv.inl line 116 copy/paste error
Bug #: 1239052
<http://sourceforge.net/tracker/index.php?func=detail&aid=1239052&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: Exception safety in class 'thread'
Bug #: 1305885
<http://sourceforge.net/tracker/index.php?func=detail&aid=1305885&group_id=7…>
Assignee: glassfordm <http://sourceforge.net/users/glassfordm/>
Summary: mistake in documentation of condition
Bug #: 1364416
<http://sourceforge.net/tracker/index.php?func=detail&aid=1364416&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: boost jam problem with parallel builds
Bug #: 1234224
<http://sourceforge.net/tracker/index.php?func=detail&aid=1234224&group_id=7…>
Assignee: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: Cannot compile octonion_test.cpp because of bug in sinc.hpp
Bug #: 751289
<http://sourceforge.net/tracker/index.php?func=detail&aid=751289&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Compiler error for tokenizer on Solaris
Bug #: 976241
<http://sourceforge.net/tracker/index.php?func=detail&aid=976241&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: token_iterator::at_end() result is inversed
Bug #: 1338326
<http://sourceforge.net/tracker/index.php?func=detail&aid=1338326&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: Diff in state of mersenne_twister gen between GCC3.41 & CW9
Bug #: 1115124
<http://sourceforge.net/tracker/index.php?func=detail&aid=1115124&group_id=7…>
Assignee: joerg_walter <http://sourceforge.net/users/joerg_walter/>
Summary: bug in ublas/storage.hpp
Bug #: 1095697
<http://sourceforge.net/tracker/index.php?func=detail&aid=1095697&group_id=7…>
Assignee: joerg_walter <http://sourceforge.net/users/joerg_walter/>
Summary: dead links in uBLAS page
Bug #: 1169273
<http://sourceforge.net/tracker/index.php?func=detail&aid=1169273&group_id=7…>
Assignee: joerg_walter <http://sourceforge.net/users/joerg_walter/>
Summary: Documentation not available on web site:
Bug #: 1228242
<http://sourceforge.net/tracker/index.php?func=detail&aid=1228242&group_id=7…>
Assignee: joerg_walter <http://sourceforge.net/users/joerg_walter/>
Summary: uBLAS::subslice doesn't work
Bug #: 1292635
<http://sourceforge.net/tracker/index.php?func=detail&aid=1292635&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Adding boost::is_complex to type_traits.hpp
Bug #: 1315712
<http://sourceforge.net/tracker/index.php?func=detail&aid=1315712&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: invalid result for File Dependency Examp
Bug #: 551110
<http://sourceforge.net/tracker/index.php?func=detail&aid=551110&group_id=75…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Spelling of Edmonds-Karp-Algorithm
Bug #: 1226292
<http://sourceforge.net/tracker/index.php?func=detail&aid=1226292&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: g++ v3.2.3 inker error for read_graphviz ih boost v1.33.1
Bug #: 1378907
<http://sourceforge.net/tracker/index.php?func=detail&aid=1378907&group_id=7…>
Assignee: kevlin <http://sourceforge.net/users/kevlin/>
Summary: lexical_cast & pure virtual functions & VC 8 STL
Bug #: 1358600
<http://sourceforge.net/tracker/index.php?func=detail&aid=1358600&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: boost.range and 'const char[]'.
Bug #: 1272315
<http://sourceforge.net/tracker/index.php?func=detail&aid=1272315&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: [Boost.Range]boost::const_begin calls non-qualified 'begin'
Bug #: 1361686
<http://sourceforge.net/tracker/index.php?func=detail&aid=1361686&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: typo in Boost.Test document
Bug #: 629685
<http://sourceforge.net/tracker/index.php?func=detail&aid=629685&group_id=75…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: Don't work multilevel hierarchy of test suites in dll.
Bug #: 1076691
<http://sourceforge.net/tracker/index.php?func=detail&aid=1076691&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: header problem in boost::test
Bug #: 1365753
<http://sourceforge.net/tracker/index.php?func=detail&aid=1365753&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: format: assert when parsing invalid pattern
Bug #: 1326132
<http://sourceforge.net/tracker/index.php?func=detail&aid=1326132&group_id=7…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: ct_gcd_lcm.hpp compilation error
Bug #: 558174
<http://sourceforge.net/tracker/index.php?func=detail&aid=558174&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: test_pool_alloc.cpp not compile CW8.1
Bug #: 586779
<http://sourceforge.net/tracker/index.php?func=detail&aid=586779&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: pool::purge_memory() does not reset next_size
Bug #: 984124
<http://sourceforge.net/tracker/index.php?func=detail&aid=984124&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: Borland compiler error with Pool, boost::pool_allocator
Bug #: 988124
<http://sourceforge.net/tracker/index.php?func=detail&aid=988124&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: perfomance: memory cleanup for pool takes too long
Bug #: 995270
<http://sourceforge.net/tracker/index.php?func=detail&aid=995270&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: boost::pool_allocator breaks with vector of vectors
Bug #: 1179641
<http://sourceforge.net/tracker/index.php?func=detail&aid=1179641&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: rational operator&lt; can overflow
Bug #: 798357
<http://sourceforge.net/tracker/index.php?func=detail&aid=798357&group_id=75…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: boost::rational documentation typos(?)
Bug #: 1043616
<http://sourceforge.net/tracker/index.php?func=detail&aid=1043616&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: no Boolean conversion for boost::rational
Bug #: 1239906
<http://sourceforge.net/tracker/index.php?func=detail&aid=1239906&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: problem with boost::iostreams when compiled with Visual C++
Bug #: 1365752
<http://sourceforge.net/tracker/index.php?func=detail&aid=1365752&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: multitoken broken in program_options 1.33
Bug #: 1266877
<http://sourceforge.net/tracker/index.php?func=detail&aid=1266877&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: format_paragraph in options_description.cpp
Bug #: 1365338
<http://sourceforge.net/tracker/index.php?func=detail&aid=1365338&group_id=7…>
--
-- Marshall
Marshall Clow Idio Software <mailto:marshall@idio.com>
It is by caffeine alone I set my mind in motion.
It is by the beans of Java that thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.
1
0
Boost regression test failures
------------------------------
Report time: 2005-12-15T15:37:19Z
This report lists all regression test failures on release platforms.
WARNING: The following libraries have failing regression tests but do
not have a maintainer on file. Once a maintainer is found, add an
entry to libs/maintainers.txt to eliminate this message.
tokenizer
utility
conversion
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-HEAD/developer/issues…
2052 failures in 38 libraries:
algorithm/minmax (6)
algorithm/string (21)
any (2)
assign (36)
concept_check (14)
config (3)
conversion (3)
crc (2)
date_time (6)
disjoint_sets (2)
format (8)
functional/hash (125)
graph (5)
integer (2)
io (5)
iostreams (100)
lambda (30)
math (23)
multi_index (42)
numeric/conversion (15)
numeric/interval (14)
pool (2)
program_options (34)
ptr_container (52)
random (3)
range (38)
regex (16)
serialization (1050)
test (51)
thread (48)
tokenizer (2)
tr1 (184)
tuple (4)
typeof (9)
utility (10)
utility/enable_if (16)
wave (2)
xpressive (67)
|algorithm/minmax|
minmax: vc-7_1 vc-7_1 vc-7_1
minmax_element: vc-7_1 vc-7_1 vc-7_1
|algorithm/string|
conv: vc-7_1 vc-7_1 vc-7_1
find: vc-7_1 vc-7_1 vc-7_1
predicate: vc-7_1 vc-7_1 vc-7_1
regex: vc-7_1 vc-7_1 vc-7_1
replace: vc-7_1 vc-7_1 vc-7_1
split: vc-7_1 vc-7_1 vc-7_1
trim: vc-7_1 vc-7_1 vc-7_1
|any|
any_to_ref_test: gcc-3.3.6-linux gcc-3_3-darwin
|assign|
basic: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
email_example: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
list_inserter: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
list_of: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
list_of_workaround: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
multi_index_container: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
my_vector_example: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ptr_list_inserter: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ptr_list_of: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
static_list_of: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
std: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
tuple_list_of: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
|concept_check|
stl_concept_covering: cw-9_4 cw-9_5-darwin gcc-3.3.6-linux gcc-3.4.4-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 intel-win32-9_0 mingw-3_4_2 mingw-3_4_2 vc-7_1 vc-7_1 vc-7_1
|config|
limits_test: gcc-3.3.6-linux gcc-3_3-darwin
math_info: cw-9_5-darwin
|conversion|
lexical_cast_test: vc-7_1 vc-7_1 vc-7_1
|crc|
crc_test: gcc-3.3.6-linux gcc-3_3-darwin
|date_time|
testgreg_serialize_dll: cw-9_4 intel-win32-8_1 intel-win32-9_0 vc-7_1 vc-7_1 vc-7_1
|disjoint_sets|
disjoint_set_test: gcc-3.3.6-linux gcc-3_3-darwin
|format|
format_test1: gcc-3.3.6-linux gcc-3_3-darwin
format_test2: gcc-3.3.6-linux gcc-3_3-darwin
format_test3: gcc-3.3.6-linux gcc-3_3-darwin
format_test_wstring: gcc-3.3.6-linux gcc-3_3-darwin
|functional/hash|
container_fwd_test: gcc-3.3.6-linux gcc-3.4.4-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 mingw-3_4_2 vc-7_1 vc-7_1 vc-7_1
hash_built_in_array_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_custom_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_deque_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_float_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_function_pointer_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_list_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_map_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_number_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_pointer_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_range_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_set_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_string_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_value_array_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
hash_vector_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 vc-7_1
link_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
|graph|
graphviz_test: gcc-3.3.6-linux gcc-3_3-darwin vc-7_1 vc-7_1 vc-7_1
|integer|
integer_traits_test: gcc-3.3.6-linux gcc-3_3-darwin
|io|
ios_state_test: gcc-3.3.6-linux gcc-3_3-darwin
ios_state_unit_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
|iostreams|
array_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
auto_close_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
buffer_size_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
bzip2_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
code_converter_test: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
component_access_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
compose_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
copy_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
counter_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
direct_adapter_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
example_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
file_descriptor_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
file_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
filtering_stream_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
finite_state_filter_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
flush_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
gzip_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
invert_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
line_filter_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
mapped_file_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
newline_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
null_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
pipeline_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
positioning_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
regex_filter_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
restrict_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
seekable_file_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
seekable_filter_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
stdio_filter_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
symmetric_filter_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
tee_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
wide_stream_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
zlib_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
|lambda|
algorithm_test: gcc-3.3.6-linux gcc-3_3-darwin
bind_tests_advanced: gcc-3.3.6-linux gcc-3_3-darwin
bind_tests_simple: gcc-3.3.6-linux gcc-3_3-darwin
bind_tests_simple_f_refs: gcc-3.3.6-linux gcc-3_3-darwin
bll_and_function: gcc-3.3.6-linux gcc-3_3-darwin
constructor_tests: gcc-3.3.6-linux gcc-3_3-darwin
control_structures: gcc-3.3.6-linux gcc-3_3-darwin
exception_test: gcc-3.3.6-linux gcc-3_3-darwin
extending_rt_traits: gcc-3.3.6-linux gcc-3_3-darwin
is_instance_of_test: gcc-3.3.6-linux gcc-3_3-darwin
lambda_cast_test: gcc-3.3.6-linux gcc-3_3-darwin
member_pointer_test: gcc-3.3.6-linux gcc-3_3-darwin
operator_tests_simple: gcc-3.3.6-linux gcc-3_3-darwin
phoenix_control_structures: gcc-3.3.6-linux gcc-3_3-darwin
switch_construct: gcc-3.3.6-linux gcc-3_3-darwin
|math|
common_factor_test: gcc-3.3.6-linux gcc-3_3-darwin
complex_test: vc-7_1 vc-7_1 vc-7_1
hypot_test: vc-7_1 vc-7_1 vc-7_1
log1p_expm1_test: vc-7_1 vc-7_1 vc-7_1
octonion_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
quaternion_mult_incl_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
quaternion_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
special_functions_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
|multi_index|
test_basic: vc-7_1 vc-7_1
test_capacity: vc-7_1 vc-7_1
test_comparison: vc-7_1 vc-7_1
test_composite_key: vc-7_1 vc-7_1
test_conv_iterators: vc-7_1 vc-7_1
test_copy_assignment: vc-7_1 vc-7_1
test_hash_ops: vc-7_1 vc-7_1
test_iterators: vc-7_1 vc-7_1
test_key_extractors: vc-7_1 vc-7_1
test_list_ops: vc-7_1 vc-7_1
test_modifiers: vc-7_1 vc-7_1
test_mpl_ops: vc-7_1 vc-7_1
test_observers: vc-7_1 vc-7_1
test_projection: vc-7_1 vc-7_1
test_range: vc-7_1 vc-7_1
test_safe_mode: vc-7_1 vc-7_1
test_serialization: vc-7_1 vc-7_1
test_set_ops: vc-7_1 vc-7_1
test_special_list_ops: vc-7_1 vc-7_1
test_special_set_ops: vc-7_1 vc-7_1
test_update: vc-7_1 vc-7_1
|numeric/conversion|
bounds_test: vc-7_1 vc-7_1 vc-7_1
converter_test: vc-7_1 vc-7_1 vc-7_1
traits_test: vc-7_1 vc-7_1 vc-7_1
udt_example_0: vc-7_1 vc-7_1 vc-7_1
udt_support_test: vc-7_1 vc-7_1 vc-7_1
|numeric/interval|
cmp: gcc-3.3.6-linux gcc-3_3-darwin
cmp_exn: gcc-3.3.6-linux gcc-3_3-darwin
cmp_exp: gcc-3.3.6-linux gcc-3_3-darwin
cmp_lex: gcc-3.3.6-linux gcc-3_3-darwin
cmp_set: gcc-3.3.6-linux gcc-3_3-darwin
cmp_tribool: gcc-3.3.6-linux gcc-3_3-darwin
test_float: gcc-3.3.6-linux gcc-3_3-darwin
|pool|
test_pool_alloc: gcc-3.3.6-linux gcc-3_3-darwin
|program_options|
cmdline_test: gcc-3.3.6-linux gcc-3_3-darwin
cmdline_test_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
options_description_test: gcc-3.3.6-linux gcc-3_3-darwin
options_description_test_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
parsers_test: gcc-3.3.6-linux gcc-3_3-darwin
parsers_test_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
positional_options_test: gcc-3.3.6-linux gcc-3_3-darwin
positional_options_test_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
unicode_test: gcc-3.3.6-linux gcc-3_3-darwin
unicode_test_dll: cw-9_4 gcc-3.3.6-linux
variable_map_test: gcc-3.3.6-linux gcc-3_3-darwin
variable_map_test_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
winmain: gcc-3.3.6-linux gcc-3_3-darwin
winmain_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
|ptr_container|
incomplete_type_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
indirect_fun: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
iterator_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ptr_array: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ptr_deque: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ptr_list: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ptr_map: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ptr_set: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ptr_vector: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
tree_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
tut1: gcc-3.3.6-linux gcc-3.4.4-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 mingw-3_4_2 vc-7_1 vc-7_1 vc-7_1
view_example: gcc-3.3.6-linux gcc-3.4.4-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin intel-win32-8_1 mingw-3_4_2 mingw-3_4_2 vc-7_1 vc-7_1 vc-7_1
|random|
random_test: vc-7_1 vc-7_1 vc-7_1
|range|
algorithm_example: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
array: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
const_ranges: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
extension_mechanism: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
iterator_pair: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
iterator_range: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
partial_workaround: cw-9_4 gcc-3.3.6-linux gcc-3.4.4-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin mingw-3_4_2 mingw-3_4_2
reversible_range: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
std_container: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
string: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
sub_range: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
|regex|
bad_expression_test: vc-7_1 vc-7_1 vc-7_1
captures_test: vc-7_1 vc-7_1 vc-7_1
concept_check: intel-win32-9_0
object_cache_test: vc-7_1 vc-7_1 vc-7_1
recursion_test: vc-7_1 vc-7_1 vc-7_1
unicode_iterator_test: vc-7_1 vc-7_1 vc-7_1
|serialization|
test_array_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_array_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_array_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_array_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_array_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_array_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_array_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_array_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_array_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_array_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_binary_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_binary_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_binary_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_binary_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_binary_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_binary_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_binary_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_binary_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_binary_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_binary_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_binary_archive: cw-9_5-darwin gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_binary_archive_dll: cw-9_4 cw-9_5-darwin gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_xml_archive: cw-9_5-darwin gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_xml_archive_dll: cw-9_4 cw-9_5-darwin gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_load_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_class_info_save_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_codecvt_null: gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_contained_class_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_cyclic_ptrs_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_delete_pointer_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_demo: gcc-3.3.6-linux gcc-3_3-darwin intel-win32-8_1
test_demo_auto_ptr: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_auto_ptr_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_demo_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_exception: gcc-3.3.6-linux gcc-3_3-darwin intel-win32-8_1
test_demo_exception_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_fast_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_fast_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_demo_pimpl: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_pimpl_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_demo_polymorphic: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_polymorphic_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_demo_portable_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_portable_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_demo_shared_ptr: gcc-3.3.6-linux gcc-3_3-darwin intel-win32-8_1
test_demo_shared_ptr_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_xml: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_xml_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_xml_load: gcc-3.3.6-linux gcc-3_3-darwin intel-win32-8_1
test_demo_xml_load_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_xml_save: gcc-3.3.6-linux gcc-3_3-darwin
test_demo_xml_save_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_deque_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_deque_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_deque_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_deque_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_deque_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_deque_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_deque_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_deque_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_deque_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_deque_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_ptr_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_class_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_derived_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_derived_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_diamond_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_exported_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_binary_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_text_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_text_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_xml_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_exported_xml_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_iterators: gcc-3.3.6-linux gcc-3_3-darwin
test_iterators_base64: gcc-3.3.6-linux gcc-3_3-darwin
test_list_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_ptrs_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_list_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_list_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_map_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_map_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_map_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_map_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_map_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_map_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_map_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin intel-win32-8_1
test_map_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_map_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_map_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_mi_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_binary_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_text_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_text_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_xml_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_mi_xml_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_mult_archive_types: gcc-3.3.6-linux gcc-3_3-darwin
test_mult_archive_types_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_multiple_ptrs_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_binary_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_text_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_text_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_xml_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_no_rtti_xml_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_binary_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_text_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_text_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_xml_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor2_xml_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_default_ctor_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_non_intrusive_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_null_ptr_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_nvp_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_object_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_object_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_object_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_object_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_object_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_object_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_object_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_object_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_object_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_object_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_optional_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_optional_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_optional_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_optional_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_optional_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_optional_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_optional_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_optional_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_optional_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_optional_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_polymorphic_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_primitive_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_private_ctor: gcc-3.3.6-linux gcc-3_3-darwin
test_private_ctor_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_recursion_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_registered_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_binary_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_text_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_text_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_xml_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_registered_xml_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_reset_object_address: gcc-3.3.6-linux gcc-3_3-darwin
test_reset_object_address_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_set_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_set_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_set_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_set_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_set_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_set_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_set_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_set_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_set_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_set_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_binary_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_text_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_text_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin intel-win32-8_1
test_shared_ptr_132_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_xml_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_132_xml_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_binary_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_text_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_text_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_xml_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_shared_ptr_xml_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_ptr_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_simple_class_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_smart_cast: gcc-3.3.6-linux gcc-3_3-darwin
test_split_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_split_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_split_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_split_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_split_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_split_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_split_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_split_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_split_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_split_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_static_warning: gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_tracking_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_binary_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_text_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_text_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_xml_archive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_unregistered_xml_warchive_dll: gcc-3.3.6-linux gcc-3_3-darwin
test_utf8_codecvt: gcc-3.3.6-linux gcc-3_3-darwin
test_variant_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_variant_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_variant_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_variant_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_variant_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_variant_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_variant_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_variant_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_variant_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_variant_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_vector_binary_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_vector_binary_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_vector_text_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_vector_text_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_vector_text_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_vector_text_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_vector_xml_archive: gcc-3.3.6-linux gcc-3_3-darwin
test_vector_xml_archive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_vector_xml_warchive: gcc-3.3.6-linux gcc-3_3-darwin
test_vector_xml_warchive_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
test_void_cast: gcc-3.3.6-linux gcc-3_3-darwin
test_void_cast_dll: cw-9_4 gcc-3.3.6-linux gcc-3_3-darwin
|test|
algorithms_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
auto_unit_test_test: mingw-3_4_2
auto_unit_test_test_mult: mingw-3_4_2
basic_cstring_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
boost_check_equal_str: gcc-3.3.6-linux gcc-3_3-darwin
class_properties_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
custom_exception_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
errors_handling_test: gcc-3.3.6-linux gcc-3_3-darwin
fixed_mapping_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
ifstream_line_iterator_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
online_test: vc-7_1 vc-7_1 vc-7_1
output_test_stream_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
parameterized_test_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
result_report_test: gcc-3.3.6-linux gcc-3_3-darwin
test_case_template_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_fp_comparisons: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_tools_test: gcc-3.3.6-linux gcc-3.4.4-linux gcc-3_3-darwin gcc-3_4_3-sunos gcc-4_0-darwin mingw-3_4_2 mingw-3_4_2
token_iterator_test: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
|thread|
test_barrier: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_barrier_lib: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_condition: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_condition_lib: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_mutex: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_mutex_lib: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_once: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_once_lib: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_read_write_mutex: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_read_write_mutex_lib: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_thread: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_thread_lib: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_tss: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_tss_lib: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_xtime: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
test_xtime_lib: gcc-3.3.6-linux gcc-3_3-darwin gcc-4_0-darwin
|tokenizer|
examples: gcc-3.3.6-linux gcc-3_3-darwin
|tr1|
run_complex_overloads: cw-9_4 cw-9_5-darwin vc-7_1 vc-7_1 vc-7_1
run_random: vc-7_1 vc-7_1 vc-7_1
std_run_complex_overloads: cw-9_4 cw-9_5-darwin vc-7_1 vc-7_1 vc-7_1
std_run_random: cw-9_4 cw-9_5-darwin vc-7_1 vc-7_1 vc-7_1
std_test_array: cw-9_4 cw-9_5-darwin
std_test_bind: cw-9_4 cw-9_5-darwin
std_test_complex: cw-9_4 cw-9_5-darwin
std_test_function: cw-9_4 cw-9_5-darwin
std_test_hash: cw-9_4 cw-9_5-darwin
std_test_mem_fn: cw-9_4 cw-9_5-darwin
std_test_random: cw-9_4 cw-9_5-darwin
std_test_regex: cw-9_4 cw-9_5-darwin
std_test_result_of: cw-9_4 cw-9_5-darwin
std_test_tr1_include: cw-9_4 cw-9_5-darwin
std_test_tuple: cw-9_4 cw-9_5-darwin
std_test_type_traits: cw-9_4 cw-9_5-darwin
test_array: cw-9_4
test_bind: cw-9_5-darwin
test_complex: cw-9_4 cw-9_5-darwin
test_function: cw-9_4 cw-9_5-darwin
test_hash: cw-9_5-darwin
test_mem_fn: cw-9_5-darwin
test_random: cw-9_4 cw-9_5-darwin
test_reference_wrapper: cw-9_5-darwin
test_result_of: cw-9_4 cw-9_5-darwin
test_shared_ptr: cw-9_5-darwin
test_tr1_include: cw-9_4 cw-9_5-darwin
test_tuple: cw-9_4 cw-9_5-darwin
test_tuple_tricky: cw-9_4 cw-9_5-darwin
tr1_add_const_test: cw-9_4 cw-9_5-darwin
tr1_add_cv_test: cw-9_4 cw-9_5-darwin
tr1_add_pointer_test: cw-9_4 cw-9_5-darwin
tr1_add_reference_test: cw-9_4 cw-9_5-darwin
tr1_add_volatile_test: cw-9_4 cw-9_5-darwin
tr1_aligned_storage_test: cw-9_4 cw-9_5-darwin
tr1_alignment_of_test: cw-9_4 cw-9_5-darwin
tr1_extent_test: cw-9_4 cw-9_5-darwin
tr1_has_nothrow_assign_test: cw-9_4 cw-9_5-darwin
tr1_has_nothrow_constr_test: cw-9_4 cw-9_5-darwin
tr1_has_nothrow_copy_test: cw-9_4 cw-9_5-darwin
tr1_has_tr1_ref_wrap_fail: cw-9_4 cw-9_5-darwin
tr1_has_tr1_shared_ptr_fail: cw-9_4 cw-9_5-darwin
tr1_has_tr1_tuple_fail: cw-9_4 cw-9_5-darwin
tr1_has_trivial_assign_test: cw-9_4 cw-9_5-darwin
tr1_has_trivial_constr_test: cw-9_4 cw-9_5-darwin
tr1_has_trivial_copy_test: cw-9_4 cw-9_5-darwin
tr1_has_trivial_destructor_test: cw-9_4 cw-9_5-darwin
tr1_has_virtual_destructor_test: cw-9_4 cw-9_5-darwin
tr1_is_arithmetic_test: cw-9_4 cw-9_5-darwin
tr1_is_array_test: cw-9_4 cw-9_5-darwin
tr1_is_base_of_test: cw-9_4 cw-9_5-darwin
tr1_is_class_test: cw-9_4 cw-9_5-darwin
tr1_is_compound_test: cw-9_4 cw-9_5-darwin
tr1_is_const_test: cw-9_4 cw-9_5-darwin
tr1_is_convertible_test: cw-9_4 cw-9_5-darwin
tr1_is_empty_test: cw-9_4 cw-9_5-darwin
tr1_is_enum_test: cw-9_4 cw-9_5-darwin
tr1_is_floating_point_test: cw-9_4 cw-9_5-darwin
tr1_is_function_test: cw-9_4 cw-9_5-darwin
tr1_is_fundamental_test: cw-9_4 cw-9_5-darwin
tr1_is_integral_test: cw-9_4 cw-9_5-darwin
tr1_is_member_func_test: cw-9_4 cw-9_5-darwin
tr1_is_member_obj_test: cw-9_4 cw-9_5-darwin
tr1_is_member_pointer_test: cw-9_4 cw-9_5-darwin
tr1_is_object_test: cw-9_4 cw-9_5-darwin
tr1_is_pod_test: cw-9_4 cw-9_5-darwin
tr1_is_pointer_test: cw-9_4 cw-9_5-darwin
tr1_is_polymorphic_test: cw-9_4 cw-9_5-darwin
tr1_is_reference_test: cw-9_4 cw-9_5-darwin
tr1_is_same_test: cw-9_4 cw-9_5-darwin
tr1_is_scalar_test: cw-9_4 cw-9_5-darwin
tr1_is_signed_test: cw-9_4 cw-9_5-darwin
tr1_is_union_test: cw-9_4 cw-9_5-darwin
tr1_is_unsigned_test: cw-9_4 cw-9_5-darwin
tr1_is_void_test: cw-9_4 cw-9_5-darwin
tr1_is_volatile_test: cw-9_4 cw-9_5-darwin
tr1_rank_test: cw-9_4 cw-9_5-darwin
tr1_remove_all_extents_test: cw-9_4 cw-9_5-darwin
tr1_remove_const_test: cw-9_4 cw-9_5-darwin
tr1_remove_cv_test: cw-9_4 cw-9_5-darwin
tr1_remove_extent_test: cw-9_4 cw-9_5-darwin
tr1_remove_pointer_test: cw-9_4 cw-9_5-darwin
tr1_remove_reference_test: cw-9_4 cw-9_5-darwin
tr1_remove_volatile_test: cw-9_4 cw-9_5-darwin
tr1_tricky_abstract_type_test: cw-9_4 cw-9_5-darwin
tr1_tricky_add_pointer_test: cw-9_4 cw-9_5-darwin
tr1_tricky_function_type_test: cw-9_4 cw-9_5-darwin
tr1_tricky_incomplete_type_test: cw-9_4 cw-9_5-darwin
tr1_tricky_is_enum_test: cw-9_4 cw-9_5-darwin
tr1_tricky_partial_spec_test: cw-9_4 cw-9_5-darwin
|tuple|
io_test: gcc-3.3.6-linux gcc-3_3-darwin
tuple_test_bench: gcc-3.3.6-linux gcc-3_3-darwin
|typeof|
function_ptr_from_tpl_emulation: vc-7_1 vc-7_1 vc-7_1
function_ptr_from_tpl_native: vc-7_1 vc-7_1 vc-7_1
std_emulation: cw-9_4 cw-9_5-darwin
std_native: cw-9_5-darwin
|utility|
compressed_pair_test: gcc-3.3.6-linux gcc-3_3-darwin
iterators_test: gcc-3.3.6-linux gcc-3_3-darwin
next_prior_test: gcc-3.3.6-linux gcc-3_3-darwin
operators_test: gcc-3.3.6-linux gcc-3_3-darwin
ref_test: gcc-3.3.6-linux gcc-3_3-darwin
|utility/enable_if|
constructors: gcc-3.3.6-linux gcc-3_3-darwin
dummy_arg_disambiguation: gcc-3.3.6-linux gcc-3_3-darwin
lazy: gcc-3.3.6-linux gcc-3_3-darwin
lazy_test: gcc-3.3.6-linux gcc-3_3-darwin
member_templates: gcc-3.3.6-linux gcc-3_3-darwin
namespace_disambiguation: gcc-3.3.6-linux gcc-3_3-darwin
no_disambiguation: gcc-3.3.6-linux gcc-3_3-darwin
partial_specializations: gcc-3.3.6-linux gcc-3_3-darwin
|wave|
testwave_dll: cw-9_4 cw-9_5-darwin
|xpressive|
misc1: cw-9_4 cw-9_5-darwin vc-7_1
test1: cw-9_4 cw-9_5-darwin vc-7_1
test1u: cw-9_4 cw-9_5-darwin vc-7_1
test2: cw-9_4 cw-9_5-darwin vc-7_1
test2u: cw-9_4 cw-9_5-darwin vc-7_1
test3: cw-9_4 cw-9_5-darwin vc-7_1
test3u: cw-9_4 cw-9_5-darwin vc-7_1
test4: cw-9_4 cw-9_5-darwin vc-7_1
test4u: cw-9_4 cw-9_5-darwin vc-7_1
test5: cw-9_4 cw-9_5-darwin vc-7_1
test5u: cw-9_4 cw-9_5-darwin vc-7_1
test6: cw-9_4 cw-9_5-darwin vc-7_1
test6u: cw-9_4 cw-9_5-darwin vc-7_1
test7: cw-9_4 cw-9_5-darwin vc-7_1
test7u: cw-9_4 cw-9_5-darwin vc-7_1
test8: cw-9_4 cw-9_5-darwin vc-7_1
test8u: cw-9_4 cw-9_5-darwin vc-7_1
test9: cw-9_4 cw-9_5-darwin vc-7_1
test9u: cw-9_4 cw-9_5-darwin vc-7_1 vc-7_1
test_cycles: cw-9_4 cw-9_5-darwin
test_dynamic: cw-9_4 cw-9_5-darwin
test_non_char: cw-9_4 cw-9_5-darwin vc-7_1
test_regex_token_iterator: cw-9_4
test_static: cw-9_4
1
0