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
- 33 participants
- 33328 discussions
AMDG
gchen wrote:
> Michael Marcin wrote:
>
>>> It seems like there should be a better way of doing this... i.e.
>>>
>>> void DestroyAllObjects()
>>> {
>>> m_object_pool.destroy_all();
>>> m_objects.clear();
>>> }
>>>
>>> Also it might be nice to iterate over all the objects in the pool (in
>>> which case I wouldn't even need the m_objects vector.
>>>
>>> Perhaps there is a better way to solve the problem?
>>>
>>>
>
> It seems that pool::release_memory or purge_memory can do this.
>
> Regards
> cg
>
1) They don't call the destructors.
2) object_pool does not expose these members.
In Christ,
Steven Watanabe
3
2
Michael Marcin wrote:
> I started using object_pool recently to solve a problem. I have lots of
> objects being created and destroyed frequently and stored in a
> collection. Every so often an event happens which triggers destroying
> all the objects.
>
> Essentially I have:
>
> boost::object_pool<Object> m_object_pool;
> std::vector<Object*> m_objects;
>
>
> Then I have a function
>
> void DestroyAllObjects()
> {
> std::vector<Object*>::iterator it, iend = m_objects.end();
> for( it = m_objects.begin(); it != iend; ++it )
> {
> m_object_pool.destroy(*it);
> }
> m_objects.clear();
> }
>
> It seems like there should be a better way of doing this... i.e.
>
> void DestroyAllObjects()
> {
> m_object_pool.destroy_all();
> m_objects.clear();
> }
>
> Also it might be nice to iterate over all the objects in the pool (in
> which case I wouldn't even need the m_objects vector.
>
> Perhaps there is a better way to solve the problem?
>
I didn't get an answer on users so I thought I'd ping here.
Thanks,
Michael Marcin
2
1
Hi,
I got the following error for the program list below. Where
program_options considers "help" and "help_abc" as ambiguous?
$ ./main --help
terminate called after throwing an instance of
'boost::program_options::ambiguous_option'
what(): ambiguous option help
Aborted
Thanks,
Peng
#include <boost/program_options.hpp>
namespace po = boost::program_options;
int main(int ac, char* av[])
{
po::options_description desc("Allowed options");
desc.add_options()
("help", "produce help message")
("help_abc", po::value<int>(), "set compression level")
;
po::variables_map vm;
po::store(po::parse_command_line(ac, av, desc), vm);
po::notify(vm);
return 0;
}
2
2
[ Up from 89 on Monday ]
Bug count: 91
12 dgregor
10 vladimir_prus
7 nobody
6 beman_dawes
5 nesotto
5 az_sw_dude
4 shammah
4 samuel_k
4 jsiek
4 grafik
3 turkanis
3 jbandela
3 djowel
2 urzuga
2 jmaurer
2 hubert_holin
2 fcacciola
2 dlwalker
2 alnsn
2 agurtovoy
1 pdimov
1 nmusatti
1 mistevens
1 mclow
1 johnmaddock
1 daniel_wallin
1 aaron_windsor
Assignee: aaron_windsor <http://sourceforge.net/users/aaron_windsor/>
Summary: top-level configure is broken
Bug #: 1598153
<http://sourceforge.net/tracker/index.php?func=detail&aid=1598153&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: mpl::remove compile error with gcc 4.1.0
Bug #: 1453180
<http://sourceforge.net/tracker/index.php?func=detail&aid=1453180&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: documentation mistake
Bug #: 1497329
<http://sourceforge.net/tracker/index.php?func=detail&aid=1497329&group_id=7…>
Assignee: alnsn <http://sourceforge.net/users/alnsn/>
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: alnsn <http://sourceforge.net/users/alnsn/>
Summary: boost::any - typeid comparison across shared boundaries
Bug #: 1577259
<http://sourceforge.net/tracker/index.php?func=detail&aid=1577259&group_id=7…>
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: from_ftime incorrectly processes FILETIME filled with zeros
Bug #: 1471025
<http://sourceforge.net/tracker/index.php?func=detail&aid=1471025&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: operator<< for gregorian::date_duration not found
Bug #: 1498778
<http://sourceforge.net/tracker/index.php?func=detail&aid=1498778&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: Unused argument warnings in serialization code
Bug #: 1600530
<http://sourceforge.net/tracker/index.php?func=detail&aid=1600530&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: linker error mingw 3.4.5
Bug #: 1426819
<http://sourceforge.net/tracker/index.php?func=detail&aid=1426819&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: VC8 can't find windows.h even though environment is correct!
Bug #: 1468124
<http://sourceforge.net/tracker/index.php?func=detail&aid=1468124&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: Log level names wrong in documentation
Bug #: 1475886
<http://sourceforge.net/tracker/index.php?func=detail&aid=1475886&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: [filesystem] portable_posix_name() may fail on premain call
Bug #: 1509633
<http://sourceforge.net/tracker/index.php?func=detail&aid=1509633&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: significantly different timer class behaviour on Win and Lin
Bug #: 1520489
<http://sourceforge.net/tracker/index.php?func=detail&aid=1520489&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: directory_iterator doesn't work with catch
Bug #: 1576175
<http://sourceforge.net/tracker/index.php?func=detail&aid=1576175&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: 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: Bundled graph properties
Bug #: 1420498
<http://sourceforge.net/tracker/index.php?func=detail&aid=1420498&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Dijkstra no_init version should not require VertexListGraph
Bug #: 1540116
<http://sourceforge.net/tracker/index.php?func=detail&aid=1540116&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Johnson All-Pairs needs better 'no path' information
Bug #: 1567811
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567811&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Numbered headers don't work with 'preferred' syntax
Bug #: 1567812
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567812&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Fruchterman-Reingold grid performance can be improved
Bug #: 1567818
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567818&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Const correctness violation
Bug #: 1567821
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567821&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Memory leaks in adjacency_list?
Bug #: 1567828
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567828&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Memory leaks with signal::connect?
Bug #: 1567829
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567829&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: crash in boost::spirit::parse
Bug #: 1509978
<http://sourceforge.net/tracker/index.php?func=detail&aid=1509978&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: boost/crc.hpp uses non-standard conforming syntax
Bug #: 1478435
<http://sourceforge.net/tracker/index.php?func=detail&aid=1478435&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: 'Bug' in comment (x2)
Bug #: 1588359
<http://sourceforge.net/tracker/index.php?func=detail&aid=1588359&group_id=7…>
Assignee: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: Numeric Conversion Documentation minor bug
Bug #: 1480954
<http://sourceforge.net/tracker/index.php?func=detail&aid=1480954&group_id=7…>
Assignee: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: optional documentation
Bug #: 1587134
<http://sourceforge.net/tracker/index.php?func=detail&aid=1587134&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: grafik <http://sourceforge.net/users/grafik/>
Summary: boost.build needs fixes for HP/UX
Bug #: 1395924
<http://sourceforge.net/tracker/index.php?func=detail&aid=1395924&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Wrong .bat name in vc-8_0-x86_amd64-tools.jam
Bug #: 1548427
<http://sourceforge.net/tracker/index.php?func=detail&aid=1548427&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Generated files '@()' don't work in regular expressions.
Bug #: 1549607
<http://sourceforge.net/tracker/index.php?func=detail&aid=1549607&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: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: octonion documentation bug
Bug #: 1499814
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499814&group_id=7…>
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: jbandela <http://sourceforge.net/users/jbandela/>
Summary: bug in char_separator
Bug #: 1510041
<http://sourceforge.net/tracker/index.php?func=detail&aid=1510041&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: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: uniform_01 copies engine instead of using a reference
Bug #: 1464566
<http://sourceforge.net/tracker/index.php?func=detail&aid=1464566&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: 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: Calling subgraph::global_to_local on a root graph
Bug #: 1444271
<http://sourceforge.net/tracker/index.php?func=detail&aid=1444271&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: strange compiling problem for transitive_closure
Bug #: 1489545
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489545&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: remove_edge core dumps on self-circle
Bug #: 1641750
<http://sourceforge.net/tracker/index.php?func=detail&aid=1641750&group_id=7…>
Assignee: mclow <http://sourceforge.net/users/mclow/>
Summary: Solaris - once.cpp compile error
Bug #: 549162
<http://sourceforge.net/tracker/index.php?func=detail&aid=549162&group_id=75…>
Assignee: mistevens <http://sourceforge.net/users/mistevens/>
Summary: ublas: bug in mapped_vector_of_mapped_vector
Bug #: 1528178
<http://sourceforge.net/tracker/index.php?func=detail&aid=1528178&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: nesotto <http://sourceforge.net/users/nesotto/>
Summary: bug in boost::range_detail
Bug #: 1484477
<http://sourceforge.net/tracker/index.php?func=detail&aid=1484477&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: local_time_facet error in VS2005 Win2003
Bug #: 1551784
<http://sourceforge.net/tracker/index.php?func=detail&aid=1551784&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: The ptr_map iterator cannot be dereference to value type
Bug #: 1566672
<http://sourceforge.net/tracker/index.php?func=detail&aid=1566672&group_id=7…>
Assignee: nmusatti <http://sourceforge.net/users/nmusatti/>
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: nobody
Summary: Shmem serious bugs
Bug #: 1518563
<http://sourceforge.net/tracker/index.php?func=detail&aid=1518563&group_id=7…>
Assignee: nobody
Summary: Changing size of memory-mapped file on Windows
Bug #: 1532684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1532684&group_id=7…>
Assignee: nobody
Summary: Warnings on MSVC 2005
Bug #: 1596577
<http://sourceforge.net/tracker/index.php?func=detail&aid=1596577&group_id=7…>
Assignee: nobody
Summary: MSVC 8 & STLport
Bug #: 1612841
<http://sourceforge.net/tracker/index.php?func=detail&aid=1612841&group_id=7…>
Assignee: nobody
Summary: boost::assignment documentation: mathematical 'typo'
Bug #: 1631893
<http://sourceforge.net/tracker/index.php?func=detail&aid=1631893&group_id=7…>
Assignee: nobody
Summary: concept_check.hpp unused variable warning
Bug #: 1636134
<http://sourceforge.net/tracker/index.php?func=detail&aid=1636134&group_id=7…>
Assignee: nobody
Summary: Performance problem in iostreams
Bug #: 1643575
<http://sourceforge.net/tracker/index.php?func=detail&aid=1643575&group_id=7…>
Assignee: pdimov <http://sourceforge.net/users/pdimov/>
Summary: gcc-4.2 atomicity.h location
Bug #: 1599422
<http://sourceforge.net/tracker/index.php?func=detail&aid=1599422&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: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: boost::format parse method doesn't work
Bug #: 1439607
<http://sourceforge.net/tracker/index.php?func=detail&aid=1439607&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: 64 bit compile warning/error for boost::format
Bug #: 1451470
<http://sourceforge.net/tracker/index.php?func=detail&aid=1451470&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: format zero length string msvc-8
Bug #: 1537844
<http://sourceforge.net/tracker/index.php?func=detail&aid=1537844&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: 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: 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: 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: turkanis <http://sourceforge.net/users/turkanis/>
Summary: bug in iostreams/copy.hpp line 81
Bug #: 1610369
<http://sourceforge.net/tracker/index.php?func=detail&aid=1610369&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: iostreams::tee_filter is for output only
Bug #: 1612981
<http://sourceforge.net/tracker/index.php?func=detail&aid=1612981&group_id=7…>
Assignee: urzuga <http://sourceforge.net/users/urzuga/>
Summary: [boost::lambda] Compile error with libstdc++ debug mode
Bug #: 1444052
<http://sourceforge.net/tracker/index.php?func=detail&aid=1444052&group_id=7…>
Assignee: urzuga <http://sourceforge.net/users/urzuga/>
Summary: Lambda: (_1 + 'y')(string('x')) Doesn't Compile
Bug #: 1602075
<http://sourceforge.net/tracker/index.php?func=detail&aid=1602075&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: Fixes for build on IBM pSeries for AIX and Linux
Bug #: 1446471
<http://sourceforge.net/tracker/index.php?func=detail&aid=1446471&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Boost Jam, and non english directorys
Bug #: 1480900
<http://sourceforge.net/tracker/index.php?func=detail&aid=1480900&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options: format_paragraph assert fails on long line
Bug #: 1485069
<http://sourceforge.net/tracker/index.php?func=detail&aid=1485069&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: boost 1.33.1 build error
Bug #: 1487256
<http://sourceforge.net/tracker/index.php?func=detail&aid=1487256&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] Endless loop with long default arguments
Bug #: 1528399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1528399&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Parameter reversal in program_options documentation
Bug #: 1574213
<http://sourceforge.net/tracker/index.php?func=detail&aid=1574213&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Function name error in program_options documentation
Bug #: 1574751
<http://sourceforge.net/tracker/index.php?func=detail&aid=1574751&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options find assert fails with multibyte characters
Bug #: 1594324
<http://sourceforge.net/tracker/index.php?func=detail&aid=1594324&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] parse_config_file documentation bug
Bug #: 1632327
<http://sourceforge.net/tracker/index.php?func=detail&aid=1632327&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
[ Unchanged from last Wednesday ]
Patch count: 16
3 vladimir_prus
2 rogeeff
2 agurtovoy
1 turkanis
1 pdimov
1 nobody
1 jsiek
1 johnmaddock
1 grafik
1 dlwalker
1 david_abrahams
1 anthonyw
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: Adjusts mpl::pair concept to be compatible with STL pairs
Bug #: 1489713
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489713&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: [mpl] evc4 port
Bug #: 1583396
<http://sourceforge.net/tracker/index.php?func=detail&aid=1583396&group_id=7…>
Assignee: anthonyw <http://sourceforge.net/users/anthonyw/>
Summary: [thread] MSVS: Allow use of thread headers with /Za
Bug #: 1627420
<http://sourceforge.net/tracker/index.php?func=detail&aid=1627420&group_id=7…>
Assignee: david_abrahams <http://sourceforge.net/users/david_abrahams/>
Summary: new links in boost homepage:Meta-Comm,IRC
Bug #: 1612399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1612399&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: [integer] add support for integers longer than long
Bug #: 1507034
<http://sourceforge.net/tracker/index.php?func=detail&aid=1507034&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: bjam: always define OSPLAT
Bug #: 1619769
<http://sourceforge.net/tracker/index.php?func=detail&aid=1619769&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: [config] evc4 port
Bug #: 1489359
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489359&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: [concept_check.hpp] remove unused variable warning in msvc
Bug #: 1388901
<http://sourceforge.net/tracker/index.php?func=detail&aid=1388901&group_id=7…>
Assignee: nobody
Summary: [archive] codecvt_null.hpp won't compile on QNX
Bug #: 1636855
<http://sourceforge.net/tracker/index.php?func=detail&aid=1636855&group_id=7…>
Assignee: pdimov <http://sourceforge.net/users/pdimov/>
Summary: support for weak_ptr binding
Bug #: 1633503
<http://sourceforge.net/tracker/index.php?func=detail&aid=1633503&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: [test] no eh exception handling functions on evc4
Bug #: 1499418
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499418&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: [test] evc4 issue with SEH support
Bug #: 1583399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1583399&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: iostreams // file_descriptor::seek BUG on files > 4 GB
Bug #: 1452698
<http://sourceforge.net/tracker/index.php?func=detail&aid=1452698&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] static const variable on evc4
Bug #: 1499420
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499420&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] putenv on Solaris
Bug #: 1568191
<http://sourceforge.net/tracker/index.php?func=detail&aid=1568191&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: VC80-Compatible String Processing in format_paragraph()
Bug #: 1580068
<http://sourceforge.net/tracker/index.php?func=detail&aid=1580068&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
[ Up from 37 on Monday ]
Support count: 38
9 grafik
5 vladimir_prus
4 nobody
4 johnmaddock
3 jsiek
3 jbandela
2 turkanis
2 az_sw_dude
1 urzuga
1 samuel_k
1 rogeeff
1 hkaiser
1 fcacciola
1 djowel
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: support new 2007 DST rules for timezone db
Bug #: 1471723
<http://sourceforge.net/tracker/index.php?func=detail&aid=1471723&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: new timezone db file for #1471723 - 2007 DST support
Bug #: 1478619
<http://sourceforge.net/tracker/index.php?func=detail&aid=1478619&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: Embedded python won't compile
Bug #: 1391956
<http://sourceforge.net/tracker/index.php?func=detail&aid=1391956&group_id=7…>
Assignee: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: boost::optional<enum> fails with /CLR
Bug #: 973424
<http://sourceforge.net/tracker/index.php?func=detail&aid=973424&group_id=75…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Jam Fails to Build
Bug #: 954048
<http://sourceforge.net/tracker/index.php?func=detail&aid=954048&group_id=75…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Boost on opteron AMD
Bug #: 1200700
<http://sourceforge.net/tracker/index.php?func=detail&aid=1200700&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Linker Problems with VC .NET 2003 / STLPort / Boost
Bug #: 1292345
<http://sourceforge.net/tracker/index.php?func=detail&aid=1292345&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Unable to build boost with Dinkumware STL version 4.02
Bug #: 1336312
<http://sourceforge.net/tracker/index.php?func=detail&aid=1336312&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Compiling only needed version
Bug #: 1377001
<http://sourceforge.net/tracker/index.php?func=detail&aid=1377001&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Building universal binary on MacOSX
Bug #: 1409774
<http://sourceforge.net/tracker/index.php?func=detail&aid=1409774&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Cross compiling boost for Windows CE (ARM) from VS2005
Bug #: 1457763
<http://sourceforge.net/tracker/index.php?func=detail&aid=1457763&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: libraries won't build
Bug #: 1524001
<http://sourceforge.net/tracker/index.php?func=detail&aid=1524001&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Having some trouble building boost
Bug #: 1534701
<http://sourceforge.net/tracker/index.php?func=detail&aid=1534701&group_id=7…>
Assignee: hkaiser <http://sourceforge.net/users/hkaiser/>
Summary: compiler is out of heap space in pass 2
Bug #: 1481122
<http://sourceforge.net/tracker/index.php?func=detail&aid=1481122&group_id=7…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Problem compiling :/
Bug #: 942349
<http://sourceforge.net/tracker/index.php?func=detail&aid=942349&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: SLOOOWW tokenizer compilation on VC++6.0
Bug #: 969590
<http://sourceforge.net/tracker/index.php?func=detail&aid=969590&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Visual C++ 'Language Extensions' support
Bug #: 1039338
<http://sourceforge.net/tracker/index.php?func=detail&aid=1039338&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Regex
Bug #: 1156957
<http://sourceforge.net/tracker/index.php?func=detail&aid=1156957&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Problem running configure for unsupported platform
Bug #: 1339778
<http://sourceforge.net/tracker/index.php?func=detail&aid=1339778&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: regex - perl syntax affects what gets matched
Bug #: 1519824
<http://sourceforge.net/tracker/index.php?func=detail&aid=1519824&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Crash on RH machine with gcc < 3.4
Bug #: 1635211
<http://sourceforge.net/tracker/index.php?func=detail&aid=1635211&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Boost with Dinkumware C++ Library !?
Bug #: 531963
<http://sourceforge.net/tracker/index.php?func=detail&aid=531963&group_id=75…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: creating my own properties
Bug #: 619615
<http://sourceforge.net/tracker/index.php?func=detail&aid=619615&group_id=75…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Max Flow Algorithm
Bug #: 1445526
<http://sourceforge.net/tracker/index.php?func=detail&aid=1445526&group_id=7…>
Assignee: nobody
Summary: Having problems with building boost
Bug #: 1545941
<http://sourceforge.net/tracker/index.php?func=detail&aid=1545941&group_id=7…>
Assignee: nobody
Summary: Building Boost with Open Watcom Compiler
Bug #: 1547257
<http://sourceforge.net/tracker/index.php?func=detail&aid=1547257&group_id=7…>
Assignee: nobody
Summary: memory pattern question
Bug #: 1634278
<http://sourceforge.net/tracker/index.php?func=detail&aid=1634278&group_id=7…>
Assignee: nobody
Summary: duplicat initial members -> erase_key postcond. fail
Bug #: 1642614
<http://sourceforge.net/tracker/index.php?func=detail&aid=1642614&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: failing on 6 targets in MacOS X
Bug #: 1572712
<http://sourceforge.net/tracker/index.php?func=detail&aid=1572712&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: Boost.Format doesn't work on MSVC with /vd2 compiler option
Bug #: 1545133
<http://sourceforge.net/tracker/index.php?func=detail&aid=1545133&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: Boost.Iostreams and newline translation
Bug #: 1299123
<http://sourceforge.net/tracker/index.php?func=detail&aid=1299123&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: boost.iostreams file_descriptor and sharing
Bug #: 1445474
<http://sourceforge.net/tracker/index.php?func=detail&aid=1445474&group_id=7…>
Assignee: urzuga <http://sourceforge.net/users/urzuga/>
Summary: lambda vs pure virtual functions
Bug #: 1231445
<http://sourceforge.net/tracker/index.php?func=detail&aid=1231445&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options Can one have options with optional values?
Bug #: 1102652
<http://sourceforge.net/tracker/index.php?func=detail&aid=1102652&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options Can one have options with optional values?
Bug #: 1102664
<http://sourceforge.net/tracker/index.php?func=detail&aid=1102664&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options bug?
Bug #: 1114084
<http://sourceforge.net/tracker/index.php?func=detail&aid=1114084&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Boost.Build v2 build script help for evc4
Bug #: 1498919
<http://sourceforge.net/tracker/index.php?func=detail&aid=1498919&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Bjam build should support attachment of individual build ids
Bug #: 1530168
<http://sourceforge.net/tracker/index.php?func=detail&aid=1530168&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
24 Jan '07
Bugs item #1643575, was opened at 2007-01-24 06:05
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1643575&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Performance problem in iostreams
Initial Comment:
iostreams dumps its internal buffers every time seekg or tellg is called even if the seek is to the current position. The following function should check if the seek position is within the buffer and, if so, adjust the buffers.
template<typename T, typename Tr, typename Alloc, typename Mode>
typename indirect_streambuf<T, Tr, Alloc, Mode>::pos_type
indirect_streambuf<T, Tr, Alloc, Mode>::seek_impl
(stream_offset off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which)
{
if (pptr() != 0)
this->BOOST_IOSTREAMS_PUBSYNC(); // sync() confuses VisualAge 6.
if (way == BOOST_IOS::cur && gptr())
off -= static_cast<off_type>(egptr() - gptr());
setg(0, 0, 0);
setp(0, 0);
return obj().seek(off, way, which, next_);
}
jerker.ohman(a)umetrics.com
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1643575&group_…
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-bugs mailing list
Boost-bugs(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/boost-bugs
1
0
[serialization] boost-RC-1_34_0 does not compile with gcc-3.4.6 (32Bit)
by Oliver.Kowalke@qimonda.com 24 Jan '07
by Oliver.Kowalke@qimonda.com 24 Jan '07
24 Jan '07
Hello,
I tried the snapshot of RC-1_34_0 from yesterday to compile with
gcc-3.4.6 on Linux (32bit) - and it failed.
Gcc-3.4.6_64 (64bit) it was reported as working - strange.
Regards,
Oliver
Errors are:
MkDir1 bin.v2/libs/serialization
MkDir1 bin.v2/libs/serialization/build
MkDir1 bin.v2/libs/serialization/build/gcc-3.4.6
MkDir1 bin.v2/libs/serialization/build/gcc-3.4.6/debug
MkDir1 bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_ar
chive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_ar
chive_impl.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_ia
rchive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_is
erializer.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_os
erializer.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_po
inter_iserializer.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_po
inter_oserializer.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_se
rializer_map.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_te
xt_iprimitive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_te
xt_oprimitive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_xm
l_archive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/binary_i
archive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/binary_o
archive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/extended
_type_info.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/extended
_type_info_no_rtti.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/extended
_type_info_typeid.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/polymorp
hic_iarchive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/polymorp
hic_oarchive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/stl_port
.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/text_iar
chive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/text_oar
chive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/void_cas
t.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/xml_gram
mar.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/xml_iarc
hive.o
gcc.compile.c++
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/xml_oarc
hive.o
gcc.link.dll
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/libboost
_serialization-gcc34-mt-d-1_34.so.1.34.0
`.L874' referenced in section `.rodata' of
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o:
defined in discarded section
`.gnu.linkonce.t._ZNK5boost7archive17archive_exception4whatEv' of
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o
`.L884' referenced in section `.rodata' of
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o:
defined in discarded section
`.gnu.linkonce.t._ZNK5boost7archive17archive_exception4whatEv' of
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o
`.L875' referenced in section `.rodata' of
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o:
defined in discarded section
`.gnu.linkonce.t._ZNK5boost7archive17archive_exception4whatEv' of
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o
`.L876' referenced in section `.rodata' of
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o:
defined in discarded section
`.gnu.linkonce.t._ZNK5boost7archive17archive_exception4whatEv' of
bin.v2/libs/serialization/build/gcc-3.4.6/debug/threading-multi/basic_oa
rchive.o
...
Gcc:
g++ -v
Lese Spezifikationen von /usr/lib/gcc/i486-linux-gnu/3.4.6/specs
Konfiguriert
mit: ../src/configure -v --enable-languages=c,c++,f77,pascal
--prefix=/usr --libexecdir=/usr/lib
--with-gxx-include-dir=/usr/include/c++/3.4 --enable-shared
--with-system-zlib --enable-nls --without-included-gettext
--program-suffix=-3.4 --enable-__cxa_atexit --enable-clocale=gnu
--enable-libstdcxx-debug --with-tune=i686 i486-linux-gnu
Thread-Modell: posix
gcc-Version 3.4.6 (Debian 3.4.6-5)
2
1
It is seem to the authors of GIL are interested in generalized image
data structure.
However, many users require some specific function for their aim.
How about, namespace "GIL:: specific" is used for contributions for
specific aim?
"GIL:: specific" will provide generalized (don't depend on data
structure ) specific functions.
Relation among other libs also important.
>However, you can rely on third-party libraries to do this, for example
>http://www.antigrain.com/ (<=2.4 uses a quite liberal license) and
>http://www.cairographics.org/ . Both can render to memory buffers which
>in turn can be used directly in GIL.
How about relation to other libs locate in
GIL::binding::other_lib_name (antigrain, opencv … and so on)
(Like ublas::binding::other_lib_name(atlas , lapck …),
.
GIL::binding::opencv is already exist.
http://www.codeproject.com/vcpp/stl/stl_like_coding_with_mmx.asp
1
0
Boost Regression test failures
Report time: 2007-01-23T11:38:08Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-RC_1_34_0/developer/i…
The following platforms have a large number of failures:
borland-5.8.2
msvc-6.5
1961 failures in 27 libraries (314 are from non-broken platforms)
bind (1 of 2 failures are from non-broken platforms)
config (10)
conversion (0 of 1 failures are from non-broken platforms)
date_time (133 of 148 failures are from non-broken platforms)
dynamic_bitset (0 of 1 failures are from non-broken platforms)
filesystem (2)
function (35)
functional/hash (0 of 1 failures are from non-broken platforms)
io (0 of 1 failures are from non-broken platforms)
iostreams (5 of 10 failures are from non-broken platforms)
iterator (3 of 7 failures are from non-broken platforms)
math (1 of 3 failures are from non-broken platforms)
multi_index (0 of 3 failures are from non-broken platforms)
numeric/interval (35 of 37 failures are from non-broken platforms)
optional (0 of 1 failures are from non-broken platforms)
parameter (0 of 1 failures are from non-broken platforms)
python (1)
random (4)
rational (0 of 1 failures are from non-broken platforms)
regex (66 of 69 failures are from non-broken platforms)
serialization (0 of 1583 failures are from non-broken platforms)
smart_ptr (0 of 1 failures are from non-broken platforms)
spirit (8)
test (4 of 25 failures are from non-broken platforms)
thread (1)
utility (1)
wave (4)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|bind|
mem_fn_eq_test: msvc-6.5* msvc-8.0
|config|
abi_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
config_info: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
config_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
limits_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
math_info: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|conversion|
lexical_cast_test: msvc-6.5*
|date_time|
testc_local_adjustor: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testclock: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testclocks: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testcustom_time_zone: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_duration: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_duration_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_facet_new: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_facet_new_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_input_facet: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_input_facet_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_iterator: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdate_iterator_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdst_rules: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testdst_transition_day_rule: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testduration: borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testfacet: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testfacet_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testfiletime_functions: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testformatters: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testformatters_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgenerators: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgenerators_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_cal: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_cal_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_day: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_day_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_duration_operators: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_durations: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_durations_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_month: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_month_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_serialize: borland-5.8.2* borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_serialize_dll: borland-5.8.2* borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_serialize_xml: borland-5.8.2* borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_wstream: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_year: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testgreg_year_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testiterator: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testlocal_adjustor: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testlocal_time: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testlocal_time_facet: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testlocal_time_input_facet: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testlocal_time_iterator: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testlocal_time_period: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testmicrosec_time_clock: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-8.0
testparse_date: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testparse_time: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testperiod: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testperiod_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testposix_time_zone: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
teststreams: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_facet: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_formatters: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_input_facet: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_period: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_serialize: borland-5.8.2* borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_serialize_std_config: borland-5.8.2* borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_serialize_xml: borland-5.8.2* borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_serialize_xml_std_config: borland-5.8.2* borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtime_wstream: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testtz_database: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testwcustom_time_zone: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
testwposix_time_zone: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|dynamic_bitset|
dyn_bitset_unit_tests2: borland-5.8.2*
|filesystem|
path_test: msvc-8.0
path_test_dll: msvc-8.0
|function|
allocator_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
contains2_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
contains_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-8.0
function_arith_cxx98: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
function_arith_portable: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
function_n_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
function_ref_cxx98: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
function_ref_portable: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
lambda_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
lib_function_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
mem_fun_cxx98: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
mem_fun_portable: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
stateless_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
std_bind_cxx98: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
std_bind_portable: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
sum_avg_cxx98: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
sum_avg_portable: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|functional/hash|
hash_float_test: msvc-6.5*
|io|
ios_state_test: borland-5.8.2*
|iostreams|
bzip2_test: hp_cxx-71_006_tru64
code_converter_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
file_descriptor_test: msvc-6.5*
gzip_test: hp_cxx-71_006_tru64
newline_test: borland-5.8.2* msvc-6.5*
restrict_test: msvc-6.5*
seekable_file_test: msvc-6.5*
zlib_test: hp_cxx-71_006_tru64
|iterator|
filter_iterator_test: borland-5.8.2* msvc-6.5* msvc-8.0
lvalue_concept_fail: borland-5.8.2* msvc-6.5* msvc-7.1 msvc-8.0
|math|
common_factor_test: borland-5.8.2*
complex_test: msvc-8.0
log1p_expm1_test: msvc-6.5*
|multi_index|
test_hash_ops: msvc-6.5*
test_serialization: msvc-6.5* msvc-6.5*
|numeric/interval|
add: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
cmp: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
cmp_exn: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
cmp_exp: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
cmp_lex: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
cmp_set: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
cmp_tribool: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
det: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-8.0
fmod: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
integer: msvc-8.0
mul: borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-8.0
overflow: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-8.0
pi: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-8.0
pow: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-8.0
test_float: borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-8.0
|optional|
optional_test: borland-5.8.2*
|parameter|
earwicker: msvc-6.5*
|python|
exec: msvc-8.0
|random|
random_demo: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
random_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|rational|
rational_test: msvc-6.5*
|regex|
bad_expression_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
captures_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
captures_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
credit_card_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
icu_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
mfc_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
object_cache_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
partial_regex_grep: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
partial_regex_match: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
posix_api_check: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
posix_api_check_cpp: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
recursion_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_config_info: borland-5.8.2* gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_dll_config_info: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_grep_example_1: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_grep_example_2: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_grep_example_3: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_grep_example_4: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_iterator_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_match_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_merge_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_regress: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-6.5*
regex_regress_dll: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 msvc-6.5*
regex_replace_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_search_example: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_split_example_1: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_split_example_2: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_timer: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_token_iterator_eg_1: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
regex_token_iterator_eg_2: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
static_mutex_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
unicode_iterator_test: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
wide_posix_api_check_cpp: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|serialization|
test_array_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_class_info_load_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo: borland-5.8.2* borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_dll: borland-5.8.2* borland-5.8.2*
test_demo_exception: borland-5.8.2* borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* borland-5.8.2*
test_demo_fast_archive: borland-5.8.2* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* borland-5.8.2*
test_demo_pimpl: borland-5.8.2* borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* borland-5.8.2*
test_demo_polymorphic: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_portable_archive: borland-5.8.2* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* borland-5.8.2*
test_demo_shared_ptr: borland-5.8.2* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* borland-5.8.2*
test_demo_xml: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_load: borland-5.8.2* borland-5.8.2*
test_demo_xml_load_dll: borland-5.8.2* borland-5.8.2*
test_demo_xml_save: borland-5.8.2* borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* borland-5.8.2*
test_deque_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* borland-5.8.2*
test_diamond_text_archive: borland-5.8.2* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_diamond_text_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_diamond_xml_archive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* borland-5.8.2*
test_diamond_xml_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* borland-5.8.2*
test_exported_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_binary_archive: borland-5.8.2* borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* borland-5.8.2*
test_map_text_archive: borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_map_text_warchive: borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_map_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_mi_binary_archive: borland-5.8.2* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* borland-5.8.2*
test_mi_text_archive: borland-5.8.2* borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_mi_text_warchive: borland-5.8.2* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_mi_xml_archive: borland-5.8.2* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* borland-5.8.2*
test_mi_xml_warchive: borland-5.8.2* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* borland-5.8.2*
test_mult_archive_types: borland-5.8.2* borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* borland-5.8.2*
test_multiple_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive_dll: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive_dll: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive_dll: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive_dll: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive_dll: msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_reset_object_address: borland-5.8.2* borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* borland-5.8.2*
test_set_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_utf8_codecvt: borland-5.8.2*
test_variant_binary_archive: msvc-6.5* msvc-6.5*
test_variant_binary_archive_dll: msvc-6.5* msvc-6.5*
test_variant_text_archive: msvc-6.5* msvc-6.5*
test_variant_text_archive_dll: msvc-6.5* msvc-6.5*
test_variant_text_warchive: msvc-6.5* msvc-6.5*
test_variant_text_warchive_dll: msvc-6.5* msvc-6.5*
test_variant_xml_archive: msvc-6.5* msvc-6.5*
test_variant_xml_archive_dll: msvc-6.5* msvc-6.5*
test_variant_xml_warchive: msvc-6.5* msvc-6.5*
test_variant_xml_warchive_dll: msvc-6.5* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_void_cast: borland-5.8.2* borland-5.8.2*
test_void_cast_dll: borland-5.8.2* borland-5.8.2*
|smart_ptr|
atomic_count_test: msvc-6.5*
|spirit|
action_tests: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
action_tests_debug: gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
symbols_add_null: msvc-7.1 msvc-8.0
symbols_add_null_debug: msvc-7.1 msvc-8.0
|test|
boost_check_equal_str: msvc-6.5* msvc-6.5*
errors_handling_test: msvc-6.5* msvc-6.5*
fixed_mapping_test: msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: msvc-6.5* msvc-6.5*
output_test_stream_test: msvc-6.5* msvc-6.5*
parameterized_test_test: msvc-6.5* msvc-6.5*
prg_exec_fail2: darwin-4.0.1
prg_exec_fail3: borland-5.8.2* cw-9.4 msvc-6.5* msvc-7.1 msvc-8.0
result_report_test: msvc-6.5* msvc-6.5*
test_case_template_test: borland-5.8.2* msvc-6.5* msvc-6.5*
test_tools_test: msvc-6.5* msvc-6.5*
|thread|
test_tss_lib: msvc-8.0
|utility|
operators_test: gcc-3.4.5_linux_x86_64
|wave|
test_re2c_lexer: hp_cxx-71_006_tru64
test_slex_lexer: hp_cxx-71_006_tru64
testwave: msvc-8.0
testwave_dll: hp_cxx-71_006_tru64
1
0