Boost
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
February 2007
- 160 participants
- 353 discussions
The borland compiler is generating a LOT of ABI warnings, around 50,000
in a typical regression run for me.
The following patch eliminates the warning, greatly reducing size of
log files.
I also have a patch to disable complex_test in the math library - this
generates an obscene number of run-time failures on Borland compilers,
somewhere around 100,000. For testers sanity, it is better to simply
not run the test on this compiler, until a solution for the test
failures is available. It is also worth noting that the test library
itself fails for Borland on floating point tests, so that might be a
pre-requisite.
These patches combined reduced fine log file size by 90% on my box.
I would like to apply patch to both mainline and rc branch - risk
should be minimal as patches are guarded for BCB and do not affect code
actual generation.
--
AlisdairM
Patches:
cvs diff -u -wb -- test\complex_test.cpp (in directory
C:\Sourceforge\boost\libs\math\)
Index: test/complex_test.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/math/test/complex_test.cpp,v
retrieving revision 1.11
diff -u -w -b -r1.11 complex_test.cpp
--- test/complex_test.cpp 6 Mar 2006 11:20:31 -0000 1.11
+++ test/complex_test.cpp 3 Feb 2007 13:34:44 -0000
@@ -26,6 +26,10 @@
#define BOOST_MESSAGE(x)
#endif
+#if BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT( 0x582 ))
+# error "Compiler does not support the Boost Test library for floating
point"
+#endif
+
//
// check_complex:
// Verifies that expected value "a" and found value "b" have a
relative error
cvs diff -u -wb -- abi_suffix.hpp (in directory
C:\Sourceforge\boost\boost\config\)
Index: abi_suffix.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/config/abi_suffix.hpp,v
retrieving revision 1.1
diff -u -w -b -r1.1 abi_suffix.hpp
--- abi_suffix.hpp 25 Nov 2003 18:28:08 -0000 1.1
+++ abi_suffix.hpp 2 Feb 2007 20:20:10 -0000
@@ -20,4 +20,7 @@
# include BOOST_ABI_SUFFIX
#endif
+#if defined( __BORLANDC__ )
+#pragma nopushoptwarn
+#endif
cvs diff -u -wb -- abi_prefix.hpp (in directory
C:\Sourceforge\boost\boost\config\)
Index: abi_prefix.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/config/abi_prefix.hpp,v
retrieving revision 1.1
diff -u -w -b -r1.1 abi_prefix.hpp
--- abi_prefix.hpp 25 Nov 2003 18:28:08 -0000 1.1
+++ abi_prefix.hpp 2 Feb 2007 20:20:14 -0000
@@ -18,3 +18,8 @@
#ifdef BOOST_HAS_ABI_HEADERS
# include BOOST_ABI_PREFIX
#endif
+
+#if defined( __BORLANDC__ )
+#pragma nopushoptwarn
+#endif
+
cvs diff -u -wb -- detail\abi_prefix.hpp (in directory
C:\Sourceforge\boost\boost\archive\)
Index: detail/abi_prefix.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/archive/detail/abi_prefix.hpp,v
retrieving revision 1.1
diff -u -w -b -r1.1 abi_prefix.hpp
--- detail/abi_prefix.hpp 27 Jan 2005 16:49:55 -0000 1.1
+++ detail/abi_prefix.hpp 2 Feb 2007 20:20:20 -0000
@@ -13,3 +13,8 @@
# pragma warning(push)
# pragma warning(disable : 4251 4231 4660 4275)
#endif
+
+#if defined( __BORLANDC__ )
+#pragma nopushoptwarn
+#endif
+
cvs diff -u -wb -- detail\abi_suffix.hpp (in directory
C:\Sourceforge\boost\boost\archive\)
Index: detail/abi_suffix.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/archive/detail/abi_suffix.hpp,v
retrieving revision 1.1
diff -u -w -b -r1.1 abi_suffix.hpp
--- detail/abi_suffix.hpp 27 Jan 2005 16:49:56 -0000 1.1
+++ detail/abi_suffix.hpp 2 Feb 2007 20:20:04 -0000
@@ -12,3 +12,8 @@
#pragma warning(pop)
#endif
#include <boost/config/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
+
+#if defined( __BORLANDC__ )
+#pragma nopushoptwarn
+#endif
+
2
3
Boost Regression test failures
Report time: 2007-02-03T12:58:29Z
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
intel-linux-9.0
msvc-6.5
1202 failures in 19 libraries (4 are from non-broken platforms)
algorithm/string (0 of 1 failures are from non-broken platforms)
config (0 of 1 failures are from non-broken platforms)
date_time (0 of 28 failures are from non-broken platforms)
dynamic_bitset (0 of 1 failures are from non-broken platforms)
filesystem (0 of 2 failures are from non-broken platforms)
graph (0 of 2 failures are from non-broken platforms)
iostreams (0 of 4 failures are from non-broken platforms)
multi_index (0 of 2 failures are from non-broken platforms)
parameter (0 of 1 failures are from non-broken platforms)
program_options (0 of 7 failures are from non-broken platforms)
ptr_container (0 of 1 failures are from non-broken platforms)
python (0 of 62 failures are from non-broken platforms)
regex (2 of 36 failures are from non-broken platforms)
serialization (0 of 1006 failures are from non-broken platforms)
spirit (0 of 5 failures are from non-broken platforms)
statechart (0 of 2 failures are from non-broken platforms)
test (1 of 30 failures are from non-broken platforms)
thread (0 of 7 failures are from non-broken platforms)
wave (1 of 4 failures are from non-broken platforms)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|algorithm/string|
regex: intel-linux-9.0*
|config|
config_link_test: intel-linux-9.0*
|date_time|
testdate_dll: intel-linux-9.0*
testdate_duration_dll: intel-linux-9.0*
testdate_facet_new_dll: intel-linux-9.0*
testdate_input_facet_dll: intel-linux-9.0*
testdate_iterator_dll: intel-linux-9.0*
testfacet_dll: intel-linux-9.0*
testformatters_dll: intel-linux-9.0*
testgenerators_dll: intel-linux-9.0*
testgreg_cal_dll: intel-linux-9.0*
testgreg_day_dll: intel-linux-9.0*
testgreg_durations_dll: intel-linux-9.0*
testgreg_month_dll: intel-linux-9.0*
testgreg_serialize: borland-5.8.2* intel-linux-9.0*
testgreg_serialize_dll: borland-5.8.2* intel-linux-9.0*
testgreg_serialize_xml: borland-5.8.2* intel-linux-9.0*
testgreg_year_dll: intel-linux-9.0*
testperiod_dll: intel-linux-9.0*
testtime_serialize: borland-5.8.2* intel-linux-9.0*
testtime_serialize_std_config: borland-5.8.2* intel-linux-9.0*
testtime_serialize_xml: borland-5.8.2* intel-linux-9.0*
testtime_serialize_xml_std_config: borland-5.8.2* intel-linux-9.0*
|dynamic_bitset|
dyn_bitset_unit_tests2: borland-5.8.2*
|filesystem|
operations_test_dll: intel-linux-9.0*
path_test_dll: intel-linux-9.0*
|graph|
graphviz_test: intel-linux-9.0*
serialize: intel-linux-9.0*
|iostreams|
bzip2_test: intel-linux-9.0*
gzip_test: intel-linux-9.0*
regex_filter_test: intel-linux-9.0*
zlib_test: intel-linux-9.0*
|multi_index|
test_serialization: intel-linux-9.0* msvc-6.5*
|parameter|
python_test: intel-linux-9.0*
|program_options|
cmdline_test_dll: intel-linux-9.0*
options_description_test_dll: intel-linux-9.0*
parsers_test_dll: intel-linux-9.0*
positional_options_test_dll: intel-linux-9.0*
unicode_test_dll: intel-linux-9.0*
variable_map_test_dll: intel-linux-9.0*
winmain_dll: intel-linux-9.0*
|ptr_container|
serialization: intel-linux-9.0*
|python|
andreas_beyer: intel-linux-9.0*
args: intel-linux-9.0*
auto_ptr: intel-linux-9.0*
back_reference: intel-linux-9.0*
bases: intel-linux-9.0*
ben_scott1: intel-linux-9.0*
bienstman1: intel-linux-9.0*
bienstman2: intel-linux-9.0*
bienstman3: intel-linux-9.0*
builtin_converters: intel-linux-9.0*
callbacks: intel-linux-9.0*
const_argument: intel-linux-9.0*
crossmod_exception: intel-linux-9.0*
crossmod_opaque: intel-linux-9.0*
data_members: intel-linux-9.0*
defaults: intel-linux-9.0*
dict: intel-linux-9.0*
docstring: intel-linux-9.0*
enum: intel-linux-9.0*
exception_translator: intel-linux-9.0*
extract: intel-linux-9.0*
implicit: intel-linux-9.0*
injected: intel-linux-9.0*
iterator: intel-linux-9.0*
keywords: intel-linux-9.0*
list: intel-linux-9.0*
long: intel-linux-9.0*
map_indexing_suite: intel-linux-9.0*
minimal: intel-linux-9.0*
multi_arg_constructor: intel-linux-9.0*
nested: intel-linux-9.0*
numpy: intel-linux-9.0*
object: intel-linux-9.0*
opaque: intel-linux-9.0*
operators: intel-linux-9.0*
pearu1: intel-linux-9.0*
pickle1: intel-linux-9.0*
pickle2: intel-linux-9.0*
pickle3: intel-linux-9.0*
pickle4: intel-linux-9.0*
pointee: intel-linux-9.0*
pointer_type_id_test: intel-linux-9.0*
pointer_vector: intel-linux-9.0*
polymorphism: intel-linux-9.0*
polymorphism2: intel-linux-9.0*
polymorphism2_auto_ptr: intel-linux-9.0*
properties: intel-linux-9.0*
raw_ctor: intel-linux-9.0*
return_arg: intel-linux-9.0*
shared_ptr: intel-linux-9.0*
slice: intel-linux-9.0*
staticmethod: intel-linux-9.0*
stl_iterator: intel-linux-9.0*
str: intel-linux-9.0*
test_pointer_adoption: intel-linux-9.0*
try: intel-linux-9.0*
tuple: intel-linux-9.0*
upcast: intel-linux-9.0*
vector_indexing_suite: intel-linux-9.0*
virtual_functions: intel-linux-9.0*
voidptr: intel-linux-9.0*
wrapper_held_type: intel-linux-9.0*
|regex|
bad_expression_test: intel-linux-9.0*
captures_example: intel-linux-9.0*
captures_test: intel-linux-9.0*
credit_card_example: intel-linux-9.0*
icu_example: intel-linux-9.0*
mfc_example: intel-linux-9.0*
object_cache_test: intel-linux-9.0*
partial_regex_grep: intel-linux-9.0*
partial_regex_match: intel-linux-9.0*
posix_api_check: intel-linux-9.0*
posix_api_check_cpp: intel-linux-9.0*
recursion_test: intel-linux-9.0*
regex_dll_config_info: intel-linux-9.0*
regex_grep_example_1: intel-linux-9.0*
regex_grep_example_2: intel-linux-9.0*
regex_grep_example_3: intel-linux-9.0*
regex_grep_example_4: intel-linux-9.0*
regex_iterator_example: intel-linux-9.0*
regex_match_example: intel-linux-9.0*
regex_merge_example: intel-linux-9.0*
regex_regress_dll: intel-linux-9.0*
regex_regress_threaded: intel-linux-9.0* msvc-8.0
regex_replace_example: intel-linux-9.0*
regex_search_example: intel-linux-9.0*
regex_split_example_1: intel-linux-9.0*
regex_split_example_2: intel-linux-9.0*
regex_timer: intel-linux-9.0*
regex_token_iterator_eg_1: intel-linux-9.0*
regex_token_iterator_eg_2: intel-linux-9.0*
static_mutex_test: intel-linux-9.0*
test_collate_info: intel-linux-9.0*
test_grep: intel-linux-9.0* sun-5.8
unicode_iterator_test: intel-linux-9.0*
wide_posix_api_check_cpp: intel-linux-9.0*
|serialization|
test_array_binary_archive: borland-5.8.2* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_array_text_archive: borland-5.8.2* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_array_text_warchive: borland-5.8.2* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_array_xml_archive: borland-5.8.2* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_text_archive: borland-5.8.2* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_load_binary_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_load_text_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_load_text_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_class_info_load_xml_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_load_xml_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_demo: borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_demo_dll: borland-5.8.2* intel-linux-9.0*
test_demo_exception: borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* intel-linux-9.0*
test_demo_fast_archive: borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* intel-linux-9.0*
test_demo_pimpl: borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* intel-linux-9.0*
test_demo_polymorphic: borland-5.8.2* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_demo_portable_archive: borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* intel-linux-9.0*
test_demo_shared_ptr: borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* intel-linux-9.0*
test_demo_xml: borland-5.8.2* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_demo_xml_load: borland-5.8.2*
test_demo_xml_load_dll: borland-5.8.2* intel-linux-9.0*
test_demo_xml_save: borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* intel-linux-9.0*
test_deque_binary_archive: borland-5.8.2* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_deque_text_archive: borland-5.8.2* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_text_archive: borland-5.8.2* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_text_archive: borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_text_warchive: borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_xml_archive: borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_xml_warchive: borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_exported_binary_archive: borland-5.8.2* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_exported_text_archive: borland-5.8.2* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_binary_archive: borland-5.8.2* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_text_archive: borland-5.8.2* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_text_warchive: borland-5.8.2* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_xml_archive: borland-5.8.2* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_map_binary_archive: borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_map_text_archive: borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_map_text_warchive: borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_map_xml_archive: borland-5.8.2* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_mi_binary_archive: borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_text_archive: borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_text_warchive: borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_xml_archive: borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_xml_warchive: borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_mult_archive_types: borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* intel-linux-9.0*
test_multiple_ptrs_binary_archive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5*
test_no_rtti_binary_archive_dll: intel-linux-9.0* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5*
test_no_rtti_text_archive_dll: intel-linux-9.0* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5*
test_no_rtti_text_warchive_dll: intel-linux-9.0* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5*
test_no_rtti_xml_archive_dll: intel-linux-9.0* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5*
test_no_rtti_xml_warchive_dll: intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_binary_archive: borland-5.8.2* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_text_archive: borland-5.8.2* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_text_warchive: borland-5.8.2* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_xml_archive: borland-5.8.2* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_text_archive: borland-5.8.2* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_private_ctor: borland-5.8.2* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_text_archive: borland-5.8.2* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_reset_object_address: borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* intel-linux-9.0*
test_set_binary_archive: borland-5.8.2* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_set_text_archive: borland-5.8.2* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_set_text_warchive: borland-5.8.2* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_set_xml_archive: borland-5.8.2* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_binary_archive: borland-5.8.2* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_text_archive: borland-5.8.2* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_text_warchive: borland-5.8.2* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_xml_archive: borland-5.8.2* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_variant_binary_archive: msvc-6.5*
test_variant_binary_archive_dll: intel-linux-9.0* msvc-6.5*
test_variant_text_archive: msvc-6.5*
test_variant_text_archive_dll: intel-linux-9.0* msvc-6.5*
test_variant_text_warchive: msvc-6.5*
test_variant_text_warchive_dll: intel-linux-9.0* msvc-6.5*
test_variant_xml_archive: msvc-6.5*
test_variant_xml_archive_dll: intel-linux-9.0* msvc-6.5*
test_variant_xml_warchive: msvc-6.5*
test_variant_xml_warchive_dll: intel-linux-9.0* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_vector_text_archive: borland-5.8.2* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_void_cast: borland-5.8.2*
test_void_cast_dll: borland-5.8.2* intel-linux-9.0*
|spirit|
bug_000008: intel-linux-9.0*
grammar_mt_tests: intel-linux-9.0*
owi_mt_tests: intel-linux-9.0*
scoped_lock_tests: intel-linux-9.0*
scoped_lock_tests_debug: intel-linux-9.0*
|statechart|
DllTestNative: intel-linux-9.0*
DllTestNormal: intel-linux-9.0*
|test|
boost_check_equal_str: intel-linux-9.0* msvc-6.5* msvc-6.5*
errors_handling_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
fixed_mapping_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
output_test_stream_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
parameterized_test_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
prg_exec_fail3: cw-9.4
result_report_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_case_template_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_fp_comparisons: intel-linux-9.0*
test_tools_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
token_iterator_test: intel-linux-9.0*
|thread|
test_barrier: intel-linux-9.0*
test_condition: intel-linux-9.0*
test_mutex: intel-linux-9.0*
test_once: intel-linux-9.0*
test_thread: intel-linux-9.0*
test_tss: intel-linux-9.0*
test_xtime: intel-linux-9.0*
|wave|
test_re2c_lexer: intel-linux-9.0*
test_slex_lexer: intel-linux-9.0*
testwave_dll: intel-linux-9.0* sun-5.8
1
0
Hi,
Out of curiosity, I'm still challenging to implement
the range library proposal.
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1871.html
I couldn't understand what 'adjacent_filtered' must do.
Could you give some examples?
Regards,
--
Shunsuke Sogame
2
2
I have been working on a library that is used for low level bit
manipulation of integral types, and modeling of n-bit length types. I
have written it as a template library, for inclusion with the Boost
library ( hopefully).
This is my public request for interest to see if anyone would be
interested in such a library. This code runs under Visual Studio
and g++ ( linux, and Mac ) . I have posted a web page with
documentation ( still a work in progress ), of most all the
functionality in the library. There is also a tar ball there, that
has been tested with Boost 1.33.1 .
Documentation and source tar-ball can be found here :
http://www.emulogic.com/bit_logic
Any feedback, positive, negative, suggestions is always appreciated.
Also if there is a better suggestion for a name, I am open to it. I
realize the Boost.Logic library has a very different purpose than
this one, and don't want them to be confused.
-Art
5
7
AMDG
Alexander Nasonov wrote:
> Steven Watanabe wrote:
>
>> I'm not quite sure how what you are doing helps.
>> typename is required inside a template and illegal
>> outside of one.
>>
>
> Compare
>
> struct nested
> {
> typedef typename encode_begin< .... >::type type;
> // ^^^^^^^^ required only in certain cases.
> };
>
> with
>
> struct nested : encode_begin< .... >
> // ^ no typename here.
> {
> };
>
Ok. Can you provide an example of using your wrapper.
I'm afraid that I don't understand it's purpose.
In Christ,
Steven Watanabe
2
1
[ Still creeping up.... ]
Bug count: 95
12 dgregor
10 vladimir_prus
6 nesotto
6 beman_dawes
6 az_sw_dude
5 turkanis
5 jsiek
4 shammah
4 samuel_k
4 grafik
3 nobody
3 jmaurer
3 jbandela
3 fcacciola
3 djowel
2 urzuga
2 johnmaddock
2 hubert_holin
2 dlwalker
2 agurtovoy
1 pdimov
1 nmusatti
1 mistevens
1 mclow
1 igaztanaga
1 daniel_wallin
1 alnsn
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: 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: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: Daylight Saving Time
Bug #: 1647261
<http://sourceforge.net/tracker/index.php?func=detail&aid=1647261&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: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: No zero-argument in_place()
Bug #: 1646100
<http://sourceforge.net/tracker/index.php?func=detail&aid=1646100&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: igaztanaga <http://sourceforge.net/users/igaztanaga/>
Summary: Shmem serious bugs
Bug #: 1518563
<http://sourceforge.net/tracker/index.php?func=detail&aid=1518563&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: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: uniform_int<> with type's maximum availaible range error
Bug #: 1646394
<http://sourceforge.net/tracker/index.php?func=detail&aid=1646394&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: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Warnings on MSVC 2005
Bug #: 1596577
<http://sourceforge.net/tracker/index.php?func=detail&aid=1596577&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: concept_check.hpp unused variable warning
Bug #: 1636134
<http://sourceforge.net/tracker/index.php?func=detail&aid=1636134&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: nesotto <http://sourceforge.net/users/nesotto/>
Summary: boost::assignment documentation: mathematical 'typo'
Bug #: 1631893
<http://sourceforge.net/tracker/index.php?func=detail&aid=1631893&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: Incorrect usage of bad_write(), bad_seek() etc.
Bug #: 1649001
<http://sourceforge.net/tracker/index.php?func=detail&aid=1649001&group_id=7…>
Assignee: nobody
Summary: Seekable file_descriptor_source /sink?
Bug #: 1649008
<http://sourceforge.net/tracker/index.php?func=detail&aid=1649008&group_id=7…>
Assignee: nobody
Summary: BOOST_IOSTREAMS_HAS_LSEEK64 on Mac OS X
Bug #: 1649025
<http://sourceforge.net/tracker/index.php?func=detail&aid=1649025&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: Changing size of memory-mapped file on Windows
Bug #: 1532684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1532684&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: turkanis <http://sourceforge.net/users/turkanis/>
Summary: Performance problem in iostreams
Bug #: 1643575
<http://sourceforge.net/tracker/index.php?func=detail&aid=1643575&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
[ Unchanged from last Wednesday ]
Support count: 38
9 grafik
5 vladimir_prus
4 johnmaddock
3 nobody
3 jsiek
3 jbandela
2 turkanis
2 az_sw_dude
1 urzuga
1 samuel_k
1 rogeeff
1 hkaiser
1 fcacciola
1 djowel
1 agurtovoy
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: duplicat initial members -> erase_key postcond. fail
Bug #: 1642614
<http://sourceforge.net/tracker/index.php?func=detail&aid=1642614&group_id=7…>
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: 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
<quote>
Are you sure you own the library you are thinking of submitting? "How
to Copyright Software" by MJ Salone, Nolo Press, 1990 says:
Doing work on your own time that is very similar to programming you
do for your employer on company time can raise nasty legal problems. In
this situation, it's best to get a written release from your employer in
advance.
Place a copyright notice in all the important files you submit. Boost
won't accept libraries without clear copyright information.
</quote>
My employer would like to see examples of such written releases. Are
there any samples any of you have I could show to them?
1
0
Boost Regression test failures
Report time: 2007-02-02T11:40: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
intel-linux-9.0
msvc-6.5
1223 failures in 24 libraries (25 are from non-broken platforms)
algorithm/string (1 of 2 failures are from non-broken platforms)
bind (1)
config (0 of 1 failures are from non-broken platforms)
date_time (0 of 28 failures are from non-broken platforms)
dynamic_bitset (0 of 1 failures are from non-broken platforms)
filesystem (2 of 4 failures are from non-broken platforms)
function (1)
graph (0 of 2 failures are from non-broken platforms)
iostreams (0 of 4 failures are from non-broken platforms)
iterator (2)
math (1)
multi_index (0 of 2 failures are from non-broken platforms)
numeric/interval (7)
parameter (0 of 1 failures are from non-broken platforms)
program_options (0 of 7 failures are from non-broken platforms)
ptr_container (0 of 1 failures are from non-broken platforms)
python (1 of 63 failures are from non-broken platforms)
regex (2 of 36 failures are from non-broken platforms)
serialization (0 of 1006 failures are from non-broken platforms)
spirit (2 of 7 failures are from non-broken platforms)
statechart (0 of 2 failures are from non-broken platforms)
test (2 of 31 failures are from non-broken platforms)
thread (1 of 8 failures are from non-broken platforms)
wave (2 of 5 failures are from non-broken platforms)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|algorithm/string|
regex: intel-linux-9.0*
replace: msvc-8.0
|bind|
mem_fn_eq_test: msvc-8.0
|config|
config_link_test: intel-linux-9.0*
|date_time|
testdate_dll: intel-linux-9.0*
testdate_duration_dll: intel-linux-9.0*
testdate_facet_new_dll: intel-linux-9.0*
testdate_input_facet_dll: intel-linux-9.0*
testdate_iterator_dll: intel-linux-9.0*
testfacet_dll: intel-linux-9.0*
testformatters_dll: intel-linux-9.0*
testgenerators_dll: intel-linux-9.0*
testgreg_cal_dll: intel-linux-9.0*
testgreg_day_dll: intel-linux-9.0*
testgreg_durations_dll: intel-linux-9.0*
testgreg_month_dll: intel-linux-9.0*
testgreg_serialize: borland-5.8.2* intel-linux-9.0*
testgreg_serialize_dll: borland-5.8.2* intel-linux-9.0*
testgreg_serialize_xml: borland-5.8.2* intel-linux-9.0*
testgreg_year_dll: intel-linux-9.0*
testperiod_dll: intel-linux-9.0*
testtime_serialize: borland-5.8.2* intel-linux-9.0*
testtime_serialize_std_config: borland-5.8.2* intel-linux-9.0*
testtime_serialize_xml: borland-5.8.2* intel-linux-9.0*
testtime_serialize_xml_std_config: borland-5.8.2* intel-linux-9.0*
|dynamic_bitset|
dyn_bitset_unit_tests2: borland-5.8.2*
|filesystem|
operations_test_dll: intel-linux-9.0*
path_test: msvc-8.0
path_test_dll: intel-linux-9.0* msvc-8.0
|function|
contains_test: msvc-8.0
|graph|
graphviz_test: intel-linux-9.0*
serialize: intel-linux-9.0*
|iostreams|
bzip2_test: intel-linux-9.0*
gzip_test: intel-linux-9.0*
regex_filter_test: intel-linux-9.0*
zlib_test: intel-linux-9.0*
|iterator|
filter_iterator_test: msvc-8.0
lvalue_concept_fail: msvc-8.0
|math|
complex_test: msvc-8.0
|multi_index|
test_serialization: intel-linux-9.0* msvc-6.5*
|numeric/interval|
det: msvc-8.0
integer: msvc-8.0
mul: msvc-8.0
overflow: msvc-8.0
pi: msvc-8.0
pow: msvc-8.0
test_float: msvc-8.0
|parameter|
python_test: intel-linux-9.0*
|program_options|
cmdline_test_dll: intel-linux-9.0*
options_description_test_dll: intel-linux-9.0*
parsers_test_dll: intel-linux-9.0*
positional_options_test_dll: intel-linux-9.0*
unicode_test_dll: intel-linux-9.0*
variable_map_test_dll: intel-linux-9.0*
winmain_dll: intel-linux-9.0*
|ptr_container|
serialization: intel-linux-9.0*
|python|
andreas_beyer: intel-linux-9.0*
args: intel-linux-9.0*
auto_ptr: intel-linux-9.0*
back_reference: intel-linux-9.0*
bases: intel-linux-9.0*
ben_scott1: intel-linux-9.0*
bienstman1: intel-linux-9.0*
bienstman2: intel-linux-9.0*
bienstman3: intel-linux-9.0*
builtin_converters: intel-linux-9.0*
callbacks: intel-linux-9.0*
const_argument: intel-linux-9.0*
crossmod_exception: intel-linux-9.0*
crossmod_opaque: intel-linux-9.0*
data_members: intel-linux-9.0*
defaults: intel-linux-9.0*
dict: intel-linux-9.0*
docstring: intel-linux-9.0*
enum: intel-linux-9.0*
exception_translator: intel-linux-9.0*
exec: msvc-8.0
extract: intel-linux-9.0*
implicit: intel-linux-9.0*
injected: intel-linux-9.0*
iterator: intel-linux-9.0*
keywords: intel-linux-9.0*
list: intel-linux-9.0*
long: intel-linux-9.0*
map_indexing_suite: intel-linux-9.0*
minimal: intel-linux-9.0*
multi_arg_constructor: intel-linux-9.0*
nested: intel-linux-9.0*
numpy: intel-linux-9.0*
object: intel-linux-9.0*
opaque: intel-linux-9.0*
operators: intel-linux-9.0*
pearu1: intel-linux-9.0*
pickle1: intel-linux-9.0*
pickle2: intel-linux-9.0*
pickle3: intel-linux-9.0*
pickle4: intel-linux-9.0*
pointee: intel-linux-9.0*
pointer_type_id_test: intel-linux-9.0*
pointer_vector: intel-linux-9.0*
polymorphism: intel-linux-9.0*
polymorphism2: intel-linux-9.0*
polymorphism2_auto_ptr: intel-linux-9.0*
properties: intel-linux-9.0*
raw_ctor: intel-linux-9.0*
return_arg: intel-linux-9.0*
shared_ptr: intel-linux-9.0*
slice: intel-linux-9.0*
staticmethod: intel-linux-9.0*
stl_iterator: intel-linux-9.0*
str: intel-linux-9.0*
test_pointer_adoption: intel-linux-9.0*
try: intel-linux-9.0*
tuple: intel-linux-9.0*
upcast: intel-linux-9.0*
vector_indexing_suite: intel-linux-9.0*
virtual_functions: intel-linux-9.0*
voidptr: intel-linux-9.0*
wrapper_held_type: intel-linux-9.0*
|regex|
bad_expression_test: intel-linux-9.0*
captures_example: intel-linux-9.0*
captures_test: intel-linux-9.0*
credit_card_example: intel-linux-9.0*
icu_example: intel-linux-9.0*
mfc_example: intel-linux-9.0*
object_cache_test: intel-linux-9.0*
partial_regex_grep: intel-linux-9.0*
partial_regex_match: intel-linux-9.0*
posix_api_check: intel-linux-9.0*
posix_api_check_cpp: intel-linux-9.0*
recursion_test: intel-linux-9.0*
regex_dll_config_info: intel-linux-9.0*
regex_grep_example_1: intel-linux-9.0*
regex_grep_example_2: intel-linux-9.0*
regex_grep_example_3: intel-linux-9.0*
regex_grep_example_4: intel-linux-9.0*
regex_iterator_example: intel-linux-9.0*
regex_match_example: intel-linux-9.0*
regex_merge_example: intel-linux-9.0*
regex_regress_dll: intel-linux-9.0*
regex_regress_threaded: intel-linux-9.0* msvc-8.0
regex_replace_example: intel-linux-9.0*
regex_search_example: intel-linux-9.0*
regex_split_example_1: intel-linux-9.0*
regex_split_example_2: intel-linux-9.0*
regex_timer: intel-linux-9.0*
regex_token_iterator_eg_1: intel-linux-9.0*
regex_token_iterator_eg_2: intel-linux-9.0*
static_mutex_test: intel-linux-9.0*
test_collate_info: intel-linux-9.0*
test_grep: intel-linux-9.0* sun-5.8
unicode_iterator_test: intel-linux-9.0*
wide_posix_api_check_cpp: intel-linux-9.0*
|serialization|
test_array_binary_archive: borland-5.8.2* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_array_text_archive: borland-5.8.2* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_array_text_warchive: borland-5.8.2* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_array_xml_archive: borland-5.8.2* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_text_archive: borland-5.8.2* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_load_binary_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_load_text_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_load_text_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_class_info_load_xml_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_load_xml_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_demo: borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_demo_dll: borland-5.8.2* intel-linux-9.0*
test_demo_exception: borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* intel-linux-9.0*
test_demo_fast_archive: borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* intel-linux-9.0*
test_demo_pimpl: borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* intel-linux-9.0*
test_demo_polymorphic: borland-5.8.2* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_demo_portable_archive: borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* intel-linux-9.0*
test_demo_shared_ptr: borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* intel-linux-9.0*
test_demo_xml: borland-5.8.2* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_demo_xml_load: borland-5.8.2*
test_demo_xml_load_dll: borland-5.8.2* intel-linux-9.0*
test_demo_xml_save: borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* intel-linux-9.0*
test_deque_binary_archive: borland-5.8.2* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_deque_text_archive: borland-5.8.2* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_text_archive: borland-5.8.2* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_text_archive: borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_text_warchive: borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_xml_archive: borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* intel-linux-9.0*
test_diamond_xml_warchive: borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_exported_binary_archive: borland-5.8.2* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_exported_text_archive: borland-5.8.2* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_binary_archive: borland-5.8.2* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_text_archive: borland-5.8.2* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_text_warchive: borland-5.8.2* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_xml_archive: borland-5.8.2* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_map_binary_archive: borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_map_text_archive: borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_map_text_warchive: borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_map_xml_archive: borland-5.8.2* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_mi_binary_archive: borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_text_archive: borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_text_warchive: borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_xml_archive: borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* intel-linux-9.0*
test_mi_xml_warchive: borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* intel-linux-9.0*
test_mult_archive_types: borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* intel-linux-9.0*
test_multiple_ptrs_binary_archive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5*
test_no_rtti_binary_archive_dll: intel-linux-9.0* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5*
test_no_rtti_text_archive_dll: intel-linux-9.0* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5*
test_no_rtti_text_warchive_dll: intel-linux-9.0* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5*
test_no_rtti_xml_archive_dll: intel-linux-9.0* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5*
test_no_rtti_xml_warchive_dll: intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_binary_archive: borland-5.8.2* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_text_archive: borland-5.8.2* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_text_warchive: borland-5.8.2* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_xml_archive: borland-5.8.2* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_text_archive: borland-5.8.2* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_private_ctor: borland-5.8.2* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_text_archive: borland-5.8.2* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_reset_object_address: borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* intel-linux-9.0*
test_set_binary_archive: borland-5.8.2* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_set_text_archive: borland-5.8.2* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_set_text_warchive: borland-5.8.2* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_set_xml_archive: borland-5.8.2* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_binary_archive: borland-5.8.2* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_text_archive: borland-5.8.2* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_text_warchive: borland-5.8.2* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_xml_archive: borland-5.8.2* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_variant_binary_archive: msvc-6.5*
test_variant_binary_archive_dll: intel-linux-9.0* msvc-6.5*
test_variant_text_archive: msvc-6.5*
test_variant_text_archive_dll: intel-linux-9.0* msvc-6.5*
test_variant_text_warchive: msvc-6.5*
test_variant_text_warchive_dll: intel-linux-9.0* msvc-6.5*
test_variant_xml_archive: msvc-6.5*
test_variant_xml_archive_dll: intel-linux-9.0* msvc-6.5*
test_variant_xml_warchive: msvc-6.5*
test_variant_xml_warchive_dll: intel-linux-9.0* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_vector_text_archive: borland-5.8.2* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-6.5*
test_void_cast: borland-5.8.2*
test_void_cast_dll: borland-5.8.2* intel-linux-9.0*
|spirit|
bug_000008: intel-linux-9.0*
grammar_mt_tests: intel-linux-9.0*
owi_mt_tests: intel-linux-9.0*
scoped_lock_tests: intel-linux-9.0*
scoped_lock_tests_debug: intel-linux-9.0*
symbols_add_null: msvc-8.0
symbols_add_null_debug: msvc-8.0
|statechart|
DllTestNative: intel-linux-9.0*
DllTestNormal: intel-linux-9.0*
|test|
boost_check_equal_str: intel-linux-9.0* msvc-6.5* msvc-6.5*
errors_handling_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
fixed_mapping_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
output_test_stream_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
parameterized_test_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
prg_exec_fail3: cw-9.4 msvc-8.0
result_report_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_case_template_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_fp_comparisons: intel-linux-9.0*
test_tools_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
token_iterator_test: intel-linux-9.0*
|thread|
test_barrier: intel-linux-9.0*
test_condition: intel-linux-9.0*
test_mutex: intel-linux-9.0*
test_once: intel-linux-9.0*
test_thread: intel-linux-9.0*
test_tss: intel-linux-9.0*
test_tss_lib: msvc-8.0
test_xtime: intel-linux-9.0*
|wave|
test_re2c_lexer: intel-linux-9.0*
test_slex_lexer: intel-linux-9.0*
testwave: msvc-8.0
testwave_dll: intel-linux-9.0* sun-5.8
1
0