Made changes to work with new boost.test library.

Added separate Jamfile


[SVN r15299]
This commit is contained in:
John Maddock
2002-09-13 11:44:40 +00:00
parent d3cc222fe9
commit d3a4cda4c0
151 changed files with 420 additions and 367 deletions

42
configure vendored
View File

@@ -2010,7 +2010,6 @@ echo $ECHO_N "checking $title ... $ECHO_C" >&6
#include "confdefs.h" #include "confdefs.h"
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef $macroname #ifndef $macroname
@@ -2019,11 +2018,6 @@ echo $ECHO_N "checking $title ... $ECHO_C" >&6
namespace ${namespace} = empty_boost; namespace ${namespace} = empty_boost;
#endif #endif
int cpp_main( int, char *[] )
{
return ${namespace}::test();
}
#define main _main
#ifdef F77_DUMMY_MAIN #ifdef F77_DUMMY_MAIN
@@ -2035,7 +2029,7 @@ int cpp_main( int, char *[] )
int int
main () main ()
{ {
return ${namespace}::test();
; ;
return 0; return 0;
@@ -2076,7 +2070,6 @@ echo $ECHO_N "checking $title (fail expected) ... $ECHO_C" >&6
#include "confdefs.h" #include "confdefs.h"
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef $macroname #ifdef $macroname
@@ -2085,11 +2078,6 @@ echo $ECHO_N "checking $title (fail expected) ... $ECHO_C" >&6
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] )
{
return ${namespace}::test();
}
#define main _main
#ifdef F77_DUMMY_MAIN #ifdef F77_DUMMY_MAIN
@@ -2101,7 +2089,7 @@ int cpp_main( int, char *[] )
int int
main () main ()
{ {
return ${namespace}::test();
; ;
return 0; return 0;
@@ -2160,7 +2148,6 @@ echo $ECHO_N "checking $title (pass expected) ... $ECHO_C" >&6
#include "confdefs.h" #include "confdefs.h"
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef $macroname #ifdef $macroname
@@ -2169,11 +2156,6 @@ echo $ECHO_N "checking $title (pass expected) ... $ECHO_C" >&6
namespace ${namespace} = empty_boost; namespace ${namespace} = empty_boost;
#endif #endif
int cpp_main( int, char *[] )
{
return ${namespace}::test();
}
#define main _main
#ifdef F77_DUMMY_MAIN #ifdef F77_DUMMY_MAIN
@@ -2185,7 +2167,7 @@ int cpp_main( int, char *[] )
int int
main () main ()
{ {
return ${namespace}::test();
; ;
return 0; return 0;
@@ -2223,7 +2205,6 @@ echo $ECHO_N "checking $title (fail expected) ... $ECHO_C" >&6
#include "confdefs.h" #include "confdefs.h"
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef $macroname #ifndef $macroname
@@ -2232,11 +2213,6 @@ echo $ECHO_N "checking $title (fail expected) ... $ECHO_C" >&6
#error "this file should not compile" #error "this file should not compile"
#endif #endif
int cpp_main( int, char *[] )
{
return ${namespace}::test();
}
#define main _main
#ifdef F77_DUMMY_MAIN #ifdef F77_DUMMY_MAIN
@@ -2248,7 +2224,7 @@ int cpp_main( int, char *[] )
int int
main () main ()
{ {
return ${namespace}::test();
; ;
return 0; return 0;
@@ -2293,16 +2269,10 @@ echo $ECHO_N "checking $title... $ECHO_C" >&6
#include "confdefs.h" #include "confdefs.h"
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#include "boost_$basename.cxx" #include "boost_$basename.cxx"
int cpp_main( int, char *[] )
{
return ${namespace}::test();
}
#define main _main
#ifdef F77_DUMMY_MAIN #ifdef F77_DUMMY_MAIN
@@ -2314,7 +2284,7 @@ int cpp_main( int, char *[] )
int int
main () main ()
{ {
return ${namespace}::test();
; ;
return 0; return 0;
@@ -3064,3 +3034,5 @@ fi

233
test/Jamfile Normal file
View File

@@ -0,0 +1,233 @@
#
# Regression test Jamfile for boost configuration setup.
# This file was automatically generated on Fri Sep 13 12:04:55 2002,
# do not edit by hand...
#
subproject libs/config/test ;
# bring in the rules for testing
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
run config_info.cpp ;
run config_test.cpp <lib>../../test/build/test_exec_monitor ;
run limits_test.cpp <lib>../../test/build/test_exec_monitor ;
test-suite "BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP" :
[ run no_arg_dep_lookup_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_arg_dep_lookup_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_AUTO_PTR" :
[ run no_auto_ptr_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_auto_ptr_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_BCB_PARTIAL_SPECIALIZATION_BUG" :
[ run no_bcb_partial_spec_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_bcb_partial_spec_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_CTYPE_FUNCTIONS" :
[ run no_ctype_functions_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_ctype_functions_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_CV_SPECIALIZATIONS" :
[ run no_cv_spec_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_cv_spec_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_CV_VOID_SPECIALIZATIONS" :
[ run no_cv_void_spec_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_cv_void_spec_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_CWCHAR" :
[ run no_cwchar_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_cwchar_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_CWCTYPE" :
[ run no_cwctype_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_cwctype_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_DEPENDENT_NESTED_DERIVATIONS" :
[ run no_dep_nested_class_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_dep_nested_class_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS" :
[ run no_dep_val_param_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_dep_val_param_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_EXCEPTION_STD_NAMESPACE" :
[ run no_excep_std_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_excep_std_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_EXCEPTIONS" :
[ run no_exceptions_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_exceptions_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS" :
[ run no_exp_func_tem_arg_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_exp_func_tem_arg_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_FUNCTION_TEMPLATE_ORDERING" :
[ run no_func_tmp_order_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_func_tmp_order_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_MS_INT64_NUMERIC_LIMITS" :
[ run no_i64_limits_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_i64_limits_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_INCLASS_MEMBER_INITIALIZATION" :
[ run no_inline_memb_init_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_inline_memb_init_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_INTEGRAL_INT64_T" :
[ run no_integral_int64_t_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_integral_int64_t_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS" :
[ run no_iter_construct_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_iter_construct_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_LIMITS" :
[ run no_limits_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_limits_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS" :
[ run no_limits_const_exp_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_limits_const_exp_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_LONG_LONG_NUMERIC_LIMITS" :
[ run no_ll_limits_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_ll_limits_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS" :
[ run no_mem_func_spec_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_mem_func_spec_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATE_KEYWORD" :
[ run no_mem_tem_keyword_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_mem_tem_keyword_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" :
[ run no_mem_templ_frnds_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_mem_templ_frnds_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_MEMBER_TEMPLATES" :
[ run no_mem_templates_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_mem_templates_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_OPERATORS_IN_NAMESPACE" :
[ run no_ops_in_namespace_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_ops_in_namespace_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" :
[ run no_partial_spec_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_partial_spec_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_PRIVATE_IN_AGGREGATE" :
[ run no_priv_aggregate_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_priv_aggregate_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_POINTER_TO_MEMBER_CONST" :
[ run no_ptr_mem_const_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_ptr_mem_const_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STRINGSTREAM" :
[ run no_sstream_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_sstream_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_ALLOCATOR" :
[ run no_std_allocator_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_allocator_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_DISTANCE" :
[ run no_std_distance_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_distance_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_ITERATOR_TRAITS" :
[ run no_std_iter_traits_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_iter_traits_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_ITERATOR" :
[ run no_std_iterator_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_iterator_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_LOCALE" :
[ run no_std_locale_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_locale_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_MESSAGES" :
[ run no_std_messages_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_messages_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_MIN_MAX" :
[ run no_std_min_max_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_min_max_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN" :
[ run no_std_oi_assign_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_oi_assign_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_USE_FACET" :
[ run no_std_use_facet_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_use_facet_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_WSTREAMBUF" :
[ run no_std_wstreambuf_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_wstreambuf_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STD_WSTRING" :
[ run no_std_wstring_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_std_wstring_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_STDC_NAMESPACE" :
[ run no_stdc_namespace_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_stdc_namespace_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_SWPRINTF" :
[ run no_swprintf_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_swprintf_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_TEMPLATE_TEMPLATES" :
[ run no_template_template_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_template_template_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_USING_TEMPLATE" :
[ run no_using_template_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_using_template_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_VOID_RETURNS" :
[ run no_void_returns_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_void_returns_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_NO_INTRINSIC_WCHAR_T" :
[ run no_wchar_t_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail no_wchar_t_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_TWO_ARG_USE_FACET" :
[ run has_2arg_use_facet_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_2arg_use_facet_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_BETHREADS" :
[ run has_bethreads_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_bethreads_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_CLOCK_GETTIME" :
[ run has_clock_gettime_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_clock_gettime_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_DIRENT_H" :
[ run has_dirent_h_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_dirent_h_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_FTIME" :
[ run has_ftime_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_ftime_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_GETTIMEOFDAY" :
[ run has_gettimeofday_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_gettimeofday_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_HASH" :
[ run has_hash_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_hash_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_LONG_LONG" :
[ run has_long_long_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_long_long_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_MACRO_USE_FACET" :
[ run has_macro_use_facet_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_macro_use_facet_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_MS_INT64" :
[ run has_ms_int64_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_ms_int64_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_NANOSLEEP" :
[ run has_nanosleep_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_nanosleep_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_NL_TYPES_H" :
[ run has_nl_types_h_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_nl_types_h_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_PARTIAL_STD_ALLOCATOR" :
[ run has_part_alloc_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_part_alloc_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_PTHREAD_DELAY_NP" :
[ run has_pthread_delay_np_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_pthread_delay_np_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE" :
[ run has_pthread_ma_st_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_pthread_ma_st_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_PTHREAD_YIELD" :
[ run has_pthread_yield_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_pthread_yield_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_PTHREADS" :
[ run has_pthreads_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_pthreads_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_SCHED_YIELD" :
[ run has_sched_yield_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_sched_yield_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_SGI_TYPE_TRAITS" :
[ run has_sgi_type_traits_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_sgi_type_traits_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_SLIST" :
[ run has_slist_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_slist_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_STDINT_H" :
[ run has_stdint_h_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_stdint_h_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_STLP_USE_FACET" :
[ run has_stlp_use_facet_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_stlp_use_facet_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_UNISTD_H" :
[ run has_unistd_h_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_unistd_h_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_MSVC6_MEMBER_TEMPLATES" :
[ run has_vc6_mem_templ_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_vc6_mem_templ_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_MSVC_STD_ITERATOR" :
[ run has_vc_iterator_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_vc_iterator_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;
test-suite "BOOST_HAS_WINTHREADS" :
[ run has_winthreads_pass.cpp <lib>../../test/build/prg_exec_monitor ]
[ link-fail has_winthreads_fail.cpp <lib>../../test/build/prg_exec_monitor ] ;

View File

@@ -10,7 +10,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_*.cxx on // ../tools/generate from boost_*.cxx on
// Tue Aug 13 12:19:31 2002 // Fri Sep 13 12:04:55 2002
#include <boost/config.hpp> #include <boost/config.hpp>
#define BOOST_INCLUDE_MAIN #define BOOST_INCLUDE_MAIN

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_2arg_use_facet.cxx on // ../tools/generate from boost_has_2arg_use_facet.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_TWO_ARG_USE_FACET #ifndef BOOST_HAS_TWO_ARG_USE_FACET

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_2arg_use_facet.cxx on // ../tools/generate from boost_has_2arg_use_facet.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_TWO_ARG_USE_FACET #ifdef BOOST_HAS_TWO_ARG_USE_FACET

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_bethreads.cxx on // ../tools/generate from boost_has_bethreads.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_BETHREADS #ifndef BOOST_HAS_BETHREADS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_bethreads.cxx on // ../tools/generate from boost_has_bethreads.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_BETHREADS #ifdef BOOST_HAS_BETHREADS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_clock_gettime.cxx on // ../tools/generate from boost_has_clock_gettime.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_CLOCK_GETTIME #ifndef BOOST_HAS_CLOCK_GETTIME

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_clock_gettime.cxx on // ../tools/generate from boost_has_clock_gettime.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_CLOCK_GETTIME #ifdef BOOST_HAS_CLOCK_GETTIME

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_dirent_h.cxx on // ../tools/generate from boost_has_dirent_h.cxx on
// Sat May 18 12:53:04 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_DIRENT_H #ifndef BOOST_HAS_DIRENT_H

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_dirent_h.cxx on // ../tools/generate from boost_has_dirent_h.cxx on
// Sat May 18 12:53:04 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_DIRENT_H #ifdef BOOST_HAS_DIRENT_H

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ftime.cxx on // ../tools/generate from boost_has_ftime.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_FTIME #ifndef BOOST_HAS_FTIME

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ftime.cxx on // ../tools/generate from boost_has_ftime.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_FTIME #ifdef BOOST_HAS_FTIME

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_gettimeofday.cxx on // ../tools/generate from boost_has_gettimeofday.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_GETTIMEOFDAY #ifndef BOOST_HAS_GETTIMEOFDAY

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_gettimeofday.cxx on // ../tools/generate from boost_has_gettimeofday.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_GETTIMEOFDAY #ifdef BOOST_HAS_GETTIMEOFDAY

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_hash.cxx on // ../tools/generate from boost_has_hash.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_HASH #ifndef BOOST_HAS_HASH

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_hash.cxx on // ../tools/generate from boost_has_hash.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_HASH #ifdef BOOST_HAS_HASH

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_long_long.cxx on // ../tools/generate from boost_has_long_long.cxx on
// Tue Oct 16 12:34:33 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_LONG_LONG #ifndef BOOST_HAS_LONG_LONG

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_long_long.cxx on // ../tools/generate from boost_has_long_long.cxx on
// Tue Oct 16 12:34:33 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_LONG_LONG #ifdef BOOST_HAS_LONG_LONG

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_macro_use_facet.cxx on // ../tools/generate from boost_has_macro_use_facet.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_MACRO_USE_FACET #ifndef BOOST_HAS_MACRO_USE_FACET

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_macro_use_facet.cxx on // ../tools/generate from boost_has_macro_use_facet.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_MACRO_USE_FACET #ifdef BOOST_HAS_MACRO_USE_FACET

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ms_int64.cxx on // ../tools/generate from boost_has_ms_int64.cxx on
// Mon May 6 12:26:03 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_MS_INT64 #ifndef BOOST_HAS_MS_INT64

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_ms_int64.cxx on // ../tools/generate from boost_has_ms_int64.cxx on
// Mon May 6 12:26:03 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_MS_INT64 #ifdef BOOST_HAS_MS_INT64

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nanosleep.cxx on // ../tools/generate from boost_has_nanosleep.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_NANOSLEEP #ifndef BOOST_HAS_NANOSLEEP

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nanosleep.cxx on // ../tools/generate from boost_has_nanosleep.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_NANOSLEEP #ifdef BOOST_HAS_NANOSLEEP

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nl_types_h.cxx on // ../tools/generate from boost_has_nl_types_h.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_NL_TYPES_H #ifndef BOOST_HAS_NL_TYPES_H

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_nl_types_h.cxx on // ../tools/generate from boost_has_nl_types_h.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_NL_TYPES_H #ifdef BOOST_HAS_NL_TYPES_H

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_part_alloc.cxx on // ../tools/generate from boost_has_part_alloc.cxx on
// Tue Aug 13 12:19:31 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PARTIAL_STD_ALLOCATOR #ifndef BOOST_HAS_PARTIAL_STD_ALLOCATOR

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_part_alloc.cxx on // ../tools/generate from boost_has_part_alloc.cxx on
// Tue Aug 13 12:19:31 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR #ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_delay_np.cxx on // ../tools/generate from boost_has_pthread_delay_np.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PTHREAD_DELAY_NP #ifndef BOOST_HAS_PTHREAD_DELAY_NP

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_delay_np.cxx on // ../tools/generate from boost_has_pthread_delay_np.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PTHREAD_DELAY_NP #ifdef BOOST_HAS_PTHREAD_DELAY_NP

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_ma_st.cxx on // ../tools/generate from boost_has_pthread_ma_st.cxx on
// Tue Jan 29 08:44:30 EST 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE #ifndef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_ma_st.cxx on // ../tools/generate from boost_has_pthread_ma_st.cxx on
// Tue Jan 29 08:44:30 EST 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE #ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_yield.cxx on // ../tools/generate from boost_has_pthread_yield.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PTHREAD_YIELD #ifndef BOOST_HAS_PTHREAD_YIELD

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthread_yield.cxx on // ../tools/generate from boost_has_pthread_yield.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PTHREAD_YIELD #ifdef BOOST_HAS_PTHREAD_YIELD

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthreads.cxx on // ../tools/generate from boost_has_pthreads.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_PTHREADS #ifndef BOOST_HAS_PTHREADS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_pthreads.cxx on // ../tools/generate from boost_has_pthreads.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_PTHREADS #ifdef BOOST_HAS_PTHREADS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sched_yield.cxx on // ../tools/generate from boost_has_sched_yield.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_SCHED_YIELD #ifndef BOOST_HAS_SCHED_YIELD

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sched_yield.cxx on // ../tools/generate from boost_has_sched_yield.cxx on
// Thu Oct 11 12:24:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_SCHED_YIELD #ifdef BOOST_HAS_SCHED_YIELD

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sgi_type_traits.cxx on // ../tools/generate from boost_has_sgi_type_traits.cxx on
// Wed Oct 31 12:19:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_SGI_TYPE_TRAITS #ifndef BOOST_HAS_SGI_TYPE_TRAITS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_sgi_type_traits.cxx on // ../tools/generate from boost_has_sgi_type_traits.cxx on
// Wed Oct 31 12:19:39 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_SGI_TYPE_TRAITS #ifdef BOOST_HAS_SGI_TYPE_TRAITS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_slist.cxx on // ../tools/generate from boost_has_slist.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_SLIST #ifndef BOOST_HAS_SLIST

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_slist.cxx on // ../tools/generate from boost_has_slist.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_SLIST #ifdef BOOST_HAS_SLIST

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stdint_h.cxx on // ../tools/generate from boost_has_stdint_h.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_STDINT_H #ifndef BOOST_HAS_STDINT_H

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stdint_h.cxx on // ../tools/generate from boost_has_stdint_h.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_STDINT_H #ifdef BOOST_HAS_STDINT_H

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stlp_use_facet.cxx on // ../tools/generate from boost_has_stlp_use_facet.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_STLP_USE_FACET #ifndef BOOST_HAS_STLP_USE_FACET

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_stlp_use_facet.cxx on // ../tools/generate from boost_has_stlp_use_facet.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_STLP_USE_FACET #ifdef BOOST_HAS_STLP_USE_FACET

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_unistd_h.cxx on // ../tools/generate from boost_has_unistd_h.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_UNISTD_H #ifndef BOOST_HAS_UNISTD_H

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_unistd_h.cxx on // ../tools/generate from boost_has_unistd_h.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_UNISTD_H #ifdef BOOST_HAS_UNISTD_H

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc6_mem_templ.cxx on // ../tools/generate from boost_has_vc6_mem_templ.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_MSVC6_MEMBER_TEMPLATES #ifndef BOOST_MSVC6_MEMBER_TEMPLATES

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc6_mem_templ.cxx on // ../tools/generate from boost_has_vc6_mem_templ.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_MSVC6_MEMBER_TEMPLATES #ifdef BOOST_MSVC6_MEMBER_TEMPLATES

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc_iterator.cxx on // ../tools/generate from boost_has_vc_iterator.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_MSVC_STD_ITERATOR #ifndef BOOST_MSVC_STD_ITERATOR

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_vc_iterator.cxx on // ../tools/generate from boost_has_vc_iterator.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_MSVC_STD_ITERATOR #ifdef BOOST_MSVC_STD_ITERATOR

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_winthreads.cxx on // ../tools/generate from boost_has_winthreads.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_HAS_WINTHREADS #ifndef BOOST_HAS_WINTHREADS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_has_winthreads.cxx on // ../tools/generate from boost_has_winthreads.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_HAS_WINTHREADS #ifdef BOOST_HAS_WINTHREADS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_arg_dep_lookup.cxx on // ../tools/generate from boost_no_arg_dep_lookup.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP #ifdef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_arg_dep_lookup.cxx on // ../tools/generate from boost_no_arg_dep_lookup.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP #ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_auto_ptr.cxx on // ../tools/generate from boost_no_auto_ptr.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_AUTO_PTR #ifdef BOOST_NO_AUTO_PTR

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_auto_ptr.cxx on // ../tools/generate from boost_no_auto_ptr.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_AUTO_PTR #ifndef BOOST_NO_AUTO_PTR

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_bcb_partial_spec.cxx on // ../tools/generate from boost_no_bcb_partial_spec.cxx on
// Sun May 19 12:48:29 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG #ifdef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_bcb_partial_spec.cxx on // ../tools/generate from boost_no_bcb_partial_spec.cxx on
// Sun May 19 12:48:29 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG #ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ctype_functions.cxx on // ../tools/generate from boost_no_ctype_functions.cxx on
// Mon Sep 24 11:11:14 PDT 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CTYPE_FUNCTIONS #ifdef BOOST_NO_CTYPE_FUNCTIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ctype_functions.cxx on // ../tools/generate from boost_no_ctype_functions.cxx on
// Mon Sep 24 11:11:14 PDT 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CTYPE_FUNCTIONS #ifndef BOOST_NO_CTYPE_FUNCTIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_spec.cxx on // ../tools/generate from boost_no_cv_spec.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CV_SPECIALIZATIONS #ifdef BOOST_NO_CV_SPECIALIZATIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_spec.cxx on // ../tools/generate from boost_no_cv_spec.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CV_SPECIALIZATIONS #ifndef BOOST_NO_CV_SPECIALIZATIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_void_spec.cxx on // ../tools/generate from boost_no_cv_void_spec.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CV_VOID_SPECIALIZATIONS #ifdef BOOST_NO_CV_VOID_SPECIALIZATIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cv_void_spec.cxx on // ../tools/generate from boost_no_cv_void_spec.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS #ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwchar.cxx on // ../tools/generate from boost_no_cwchar.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CWCHAR #ifdef BOOST_NO_CWCHAR

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwchar.cxx on // ../tools/generate from boost_no_cwchar.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CWCHAR #ifndef BOOST_NO_CWCHAR

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwctype.cxx on // ../tools/generate from boost_no_cwctype.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_CWCTYPE #ifdef BOOST_NO_CWCTYPE

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_cwctype.cxx on // ../tools/generate from boost_no_cwctype.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_CWCTYPE #ifndef BOOST_NO_CWCTYPE

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_nested_class.cxx on // ../tools/generate from boost_no_dep_nested_class.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS #ifdef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_nested_class.cxx on // ../tools/generate from boost_no_dep_nested_class.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS #ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_val_param.cxx on // ../tools/generate from boost_no_dep_val_param.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS #ifdef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_dep_val_param.cxx on // ../tools/generate from boost_no_dep_val_param.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS #ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_excep_std.cxx on // ../tools/generate from boost_no_excep_std.cxx on
// Tue Aug 13 12:19:31 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_EXCEPTION_STD_NAMESPACE #ifdef BOOST_NO_EXCEPTION_STD_NAMESPACE

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_excep_std.cxx on // ../tools/generate from boost_no_excep_std.cxx on
// Tue Aug 13 12:19:31 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE #ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exceptions.cxx on // ../tools/generate from boost_no_exceptions.cxx on
// Fri Feb 8 11:29:25 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_EXCEPTIONS #ifdef BOOST_NO_EXCEPTIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exceptions.cxx on // ../tools/generate from boost_no_exceptions.cxx on
// Fri Feb 8 11:29:25 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_EXCEPTIONS #ifndef BOOST_NO_EXCEPTIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exp_func_tem_arg.cxx on // ../tools/generate from boost_no_exp_func_tem_arg.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS #ifdef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_exp_func_tem_arg.cxx on // ../tools/generate from boost_no_exp_func_tem_arg.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS #ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_func_tmp_order.cxx on // ../tools/generate from boost_no_func_tmp_order.cxx on
// Wed Oct 3 13:47:21 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_func_tmp_order.cxx on // ../tools/generate from boost_no_func_tmp_order.cxx on
// Wed Oct 3 13:47:21 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_i64_limits.cxx on // ../tools/generate from boost_no_i64_limits.cxx on
// Thu Jul 18 11:26:48 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_MS_INT64_NUMERIC_LIMITS #ifdef BOOST_NO_MS_INT64_NUMERIC_LIMITS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_i64_limits.cxx on // ../tools/generate from boost_no_i64_limits.cxx on
// Thu Jul 18 11:26:48 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS #ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_inline_memb_init.cxx on // ../tools/generate from boost_no_inline_memb_init.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_INCLASS_MEMBER_INITIALIZATION #ifdef BOOST_NO_INCLASS_MEMBER_INITIALIZATION

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_inline_memb_init.cxx on // ../tools/generate from boost_no_inline_memb_init.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_integral_int64_t.cxx on // ../tools/generate from boost_no_integral_int64_t.cxx on
// Wed Oct 17 12:10:00 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_INTEGRAL_INT64_T #ifdef BOOST_NO_INTEGRAL_INT64_T

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_integral_int64_t.cxx on // ../tools/generate from boost_no_integral_int64_t.cxx on
// Wed Oct 17 12:10:00 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_INTEGRAL_INT64_T #ifndef BOOST_NO_INTEGRAL_INT64_T

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_iter_construct.cxx on // ../tools/generate from boost_no_iter_construct.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS #ifdef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_iter_construct.cxx on // ../tools/generate from boost_no_iter_construct.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS #ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_limits_const_exp.cxx on // ../tools/generate from boost_no_limits_const_exp.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS #ifdef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_limits_const_exp.cxx on // ../tools/generate from boost_no_limits_const_exp.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS #ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_limits.cxx on // ../tools/generate from boost_no_limits.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_LIMITS #ifdef BOOST_NO_LIMITS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_limits.cxx on // ../tools/generate from boost_no_limits.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_LIMITS #ifndef BOOST_NO_LIMITS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ll_limits.cxx on // ../tools/generate from boost_no_ll_limits.cxx on
// Thu Jul 18 11:26:48 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_LONG_LONG_NUMERIC_LIMITS #ifdef BOOST_NO_LONG_LONG_NUMERIC_LIMITS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_ll_limits.cxx on // ../tools/generate from boost_no_ll_limits.cxx on
// Thu Jul 18 11:26:48 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS #ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_mem_func_spec.cxx on // ../tools/generate from boost_no_mem_func_spec.cxx on
// Sun May 19 12:48:29 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS #ifdef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_mem_func_spec.cxx on // ../tools/generate from boost_no_mem_func_spec.cxx on
// Sun May 19 12:48:29 2002 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS #ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS

View File

@@ -11,7 +11,7 @@
// Do not edit this file, it was generated automatically by // Do not edit this file, it was generated automatically by
// ../tools/generate from boost_no_mem_tem_keyword.cxx on // ../tools/generate from boost_no_mem_tem_keyword.cxx on
// Mon Sep 10 12:18:12 2001 // Thu Sep 12 12:24:12 2002
// Must not have BOOST_ASSERT_CONFIG set; it defeats // Must not have BOOST_ASSERT_CONFIG set; it defeats
// the objective of this file: // the objective of this file:
@@ -20,7 +20,6 @@
#endif #endif
#include <boost/config.hpp> #include <boost/config.hpp>
#include <boost/test/cpp_main.cpp>
#include "test.hpp" #include "test.hpp"
#ifdef BOOST_NO_MEMBER_TEMPLATE_KEYWORD #ifdef BOOST_NO_MEMBER_TEMPLATE_KEYWORD

Some files were not shown because too many files have changed in this diff Show More