Boost
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 20 participants
- 33314 discussions
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
Hi,
config/compiler/visualc.hpp, line 131:
# if defined(UNDER_CE)
# if _MSC_VER < 1200
// Note: these are so far off, they are not really supported
# elif _MSC_VER < 1300 // eVC++ 4 comes with 1200-1202
# define BOOST_COMPILER_VERSION evc4.0
# error unknown CE compiler // ????!!!!!!!
# else
# error unknown CE compiler
# endif
I believe this is typo...
Regards,
MB
p-stade.sourceforge.net
2
1
> -----Original Message-----
> From: boost-bounces(a)lists.boost.org
> [mailto:boost-bounces@lists.boost.org] On Behalf Of Martin Bonner
> Sent: den 15 december 2005 15:15
> To: 'boost(a)lists.boost.org'
> Subject: Re: [boost] [Review] Boost.Logging: formal review
>
> The current definition is (I believe)
>
> #define BOOST_LOG(logger) \
> if(!logger.isEnabled()) {} else logger
>
> Which achieves the same ends. In particular, foo() is not
> called unless logging occurs.
Hmmm...sorry, I didn't quite see that until I took a real hard look at
the macro...
Cheers,
Richard
The content of this e-mail is intended only for the confidential use of the person(s) to whom it is addressed. If the reader of this message is not such a person, you are hereby notified that you have received this communication in error and that reading it, copying it, or in any way disseminating its content to any other person, is strictly prohibited. If you have received this message in error, please notify the author by replying to the e-mail immediately. NeoNet AB and its subsidiaries (NeoNet Securities AB, NeoNet Securities Inc. and NeoNet Technology AB) are unable to exercise control over the content of information contained in transmissions made via the Internet and hereby excludes any warranty as to the quality or accuracy of any information contained in this message and any liability of any kind for the information contained in it, or for its transmission, reception, storage or use in any way whatsoever.
1
0
On Dec 12, 2005, at 5:53 PM, Eric Niebler wrote:
>
> Noel Belcourt wrote:
>>>
>>> If someone with cw-9_4 felt like being charitable this holiday
>>> season,
>>> they could run xpressive's "test_static" and/or "test_dynamic" tests
>>> under a debugger and send me the stack trace. Or grant me ssh access
>>> to
>>> a machine with this toolset so I can debug it myself.
>>
>> I can assist if it's okay to use CW 9.6?
>
> That's a generous offer, and the results will be interesting, but I
> suspect the problem won't expose itself with 9.6, since the test_static
> test passed with cw-9_5 even before my fixes. I'm guessing this is a
> cw-9_4-specific problem, but I can't say for sure at this point.
There is a problem compiling Xpressive's test_static and test_dynamic
with CW 9.6. The error is in test/impl/execution_monitor.ipp, lines
86-88.
# include <unistd.h>
# include <signal.h>
# include <setjmp.h>
These include files are defined in CW's standard library (MSL) and they
hide the ones in /usr/include. The MSL doesn't seem to define the full
(or maybe the correct) set of signal handling functions and structures.
Xpressive's test_static and test_dynamic compile and run without error
if I change the includes to
# include </usr/include/unistd.h>
# include </usr/include/signal.h>
# include </usr/include/setjmp.h>
Can anyone suggest a workaround for this?
-- Noel
2
1
Some thoughts and ideas about some of the topics that has been discussed
regarding the proposed Boost.Logging library.
1. Enabled/disabled logger, logging macros and efficiency
The logging macro BOOST_LOG should accept two arguments instead of one.
The logger and the log message. The syntax
(1) BOOST_LOG(some_log) << "my message " << foo() << bar();
should be replaced with
(2) BOOST_LOG(some_log, "my message " << foo() << bar());
and the macro being defined something like this
(3) #define BOOST_LOG(logger, msg) \
if(logger.isEnabled()) { /* code that logs msg */ ... }
Thus, disabled loggers will never take longer than simple if-statement,
as long as the isEnabled() method is fast, which IMO should take no
longer than comparing booleans.
In the original solution (1) the method foo() will always be called,
which is inefficient when the logger is disabled, in solution (2), foo()
will never be called when the logger is disabled.
Further more, the macro could insert extra information such as __LINE__,
__FILE__ etc. If needed or wanted, the macro could of course be
redefined to leave no trace of the logging. I could also envision a few
other macros that for example creates a logger object on the stack that
logs upon creation and destruction, a special macro to aid developers
that are always compiled out of release code. Perhaps such macros is
best left to the user of the library although I do think that there are
common set of macros that is useful for most applications and situations
and thus are good candidates for being defined in the library.
2. Filtering
There has been some discussion about the ability of a library to be able
to do more filtering than simple log levels, notably by Gennadiy
Rozental.
Gennadiy writes:
> At the bare minimum it should support:
>
> entry level - levels set is ordered set of values indication
> importance of information provided. Filtering is based on threshold.
> Examples: DEBUG, INFO, MAJOR
> entry category - categories set is a set of unique values indicating
> kind of information provided Filtering is based on masking.
> Examples: ARGS, RETURN_VALUE, ERROR_LOG, DATA_FLOW, PROG_FLOW
> entry keyword - keyword set is set of user defined keywords (most
> frequently strings) identifying area of the program. Filtering is
based on match of keywords.
> Keywords usually are used to mark specific part of application.
I agree that it is very important for a logging library to support this.
However, I do not think that the solution is for the logging library to
be aware of such special values. The library should be as simplistic as
possible, with no or few assumptions about its use, at least at the
basic "framework level". Only then IMO could the library accodomate
various neeeds. Let me explain. If special values are introduced in the
library, there will always be applications and users that lack some
other special value, perhaps specific to their domain, but even more
likely, to their taste and style.
My proposed solution is to basically let loggers be somewhat entry
(Gennadiy's definition above) unaware. Instead, let the developer be
entry aware. By that I mean that the developer should log messages that
belong to a specific entry category/level to a specific logger. For
example, if there is a need to log and filter a RETUN_VALUE category,
then a specific logger, perhaphs named RETURN_VALUE_LOGGER (or
whatever), and let the user send log messages to that logger. This could
look something like this:
BOOST_LOG( RETURN_VALUE_LOGGER, "The return value is: " << value );
This solution also means that you have a different logger for each
level, level filtering perhaps being the most common filter. For
example:
BOOST_LOG( debug, "some debug output " << a << foo() );
BOOST_LOG( error, "Error: " << e.what() );
where 'debug' and 'error' are loggers. Now, the drawback with this
approach is that several loggers needs to be defined and configured, but
as long as this is simple this should be ok. There should also be
default definitions and configurations available from the library, which
"sits" on top of the basic library framework.
As for entry keywords (see above), I see two interpretations of
Gennadiy's idea. (1) A log statement is marked with a keyword. For
example:
BOOST_LOGX( logger, "user defined keyword", "my log msg " << value );
Or (2), logging is filtered on what strings are contained in the log
message. That is, log statements are written in the normal way by the
programmer but is filtered by some mechanism where the log message is
matched against certain keywords, like the grep command.
For interpretation (1): My proposed solution should solve the problem.
Declare a specific logger that the programmer send log statements to for
the specified keyword.
For interpretation (2 ): IMO the filtering mechanism should either sit
on top of loggers or possibly in the appenders, or the tools that are
used to view logs (e.g. grep and such). The "on top" solution would be
to use specicial functions that utilizes the "lower" layer of simple
loggers. It should be an extension to the log library and not be part of
the core functionality (but could still be provided by a logging
library). For example:
BOOST_LOGX( logger, Predicate( ... ), "my log msg" << value );
Thus, the approach to filtering, based on Gennadiy's idea of various
criteria is to to enable/disable loggers depending on
system/users/developers needs'. Hence, enabling/disabling must be
simple. Using John Torjo's solution of manipulate_log-functions this
ought be relative easy.
The programmer should be able to enable/disable loggers on various
critiera. One solution for this would be to attach user, as well as
common/default library, supplied name-value pairs to loggers and let the
manipulate_log functions enable/disable loggers that meet certain
criteria for these name-value pairs. For example, when defining which
loggers that are available to the programmer (by himself or some other
developer), a log level name-value object is attached to the loggers.
The logger named 'debug' is attached with a log level of 'debug' (a
literal integer value chosen carefully e.g. 0). Later on in the program,
the programmer can issue the statement, using the
manipulate_log-functions to enable all loggers that have a property name
log level with a value greater than 'debug' and so on.
Additional benefits of using this clean approach (maybe possible with
Johns solution as well (?)) to loggers is that it is quite possible to
have debug loggers log in one subsystem while normal logging is done in
the rest of the program. Any combination is possible.
The major drawback with this clean approach to loggers as I see it is
the additional complexity, cognitive burden, for setting up loggers.
Part of this problem should be alleviated by the library by providing a
default set of loggers for common/simple/I just wanna get started
-situations.
Cheers,
Richard Glanmark
The content of this e-mail is intended only for the confidential use of the person(s) to whom it is addressed. If the reader of this message is not such a person, you are hereby notified that you have received this communication in error and that reading it, copying it, or in any way disseminating its content to any other person, is strictly prohibited. If you have received this message in error, please notify the author by replying to the e-mail immediately. NeoNet AB and its subsidiaries (NeoNet Securities AB, NeoNet Securities Inc. and NeoNet Technology AB) are unable to exercise control over the content of information contained in transmissions made via the Internet and hereby excludes any warranty as to the quality or accuracy of any information contained in this message and any liability of any kind for the information contained in it, or for its transmission, reception, storage or use in any way whatsoever.
1
0
Hello,
Tru64/CXX-7.1 complains about the new boost.test code:
cxx: Error:
/house/schoepf/boost/regression/boost/boost/test/impl/exception_safety.ipp,
line 452: #304
no instance of overloaded function "std::min" matches the argument
list
argument types are: (std::size_t, unsigned int)
detected during instantiation of "void
boost::itest::<unnamed>::format_execution_path(boost::wrap_
stringstream &, ExecPathIt, ExecPathIt, unsigned int)
[with ExecPathIt=boost::itest::execution_path_point *]" at
line 503
for( i = 0; i < (std::min)( it->m_alloc.size, (unsigned)8
); i++ ) {
--------------------------------^
cxx: Error:
/house/schoepf/boost/regression/boost/boost/test/impl/exception_safety.ipp,
line 462: #304
no instance of overloaded function "std::min" matches the argument
list
argument types are: (std::size_t, unsigned int)
detected during instantiation of "void
boost::itest::<unnamed>::format_execution_path(boost::wrap_
stringstream &, ExecPathIt, ExecPathIt, unsigned int)
[with ExecPathIt=boost::itest::execution_path_point *]" at
line 503
for( i = 0; i < (std::min)( it->m_alloc.size, (unsigned)8
); i++ ) {
--------------------------------^
cxx: Info: 2 errors detected in the compilation of
"/house/schoepf/boost/regression/boost/libs/test/build/../src/exception_safety.cpp".
I think the (unsigned)8 should actually read static_cast<std::size_t>(8),
or perhaps just use (std:min<std::size_t>) instead.
Markus
1
0