From 635bd81f44d4cd6a1296eb650378c29cbaeb273c Mon Sep 17 00:00:00 2001 From: Gennadiy Rozental Date: Mon, 1 Dec 2003 00:42:38 +0000 Subject: [PATCH] prerelease cleaning [SVN r21023] --- build/Jamfile | 22 ++++- example/exec_mon_example.cpp | 58 ++++++------ include/boost/test/auto_unit_test.hpp | 13 +-- .../boost/test/detail/class_properties.hpp | 10 +-- include/boost/test/detail/nullstream.hpp | 10 +-- .../test/detail/supplied_log_formatters.hpp | 10 +-- .../boost/test/detail/unit_test_config.hpp | 10 +-- .../boost/test/detail/unit_test_monitor.hpp | 21 ++--- .../test/detail/unit_test_parameters.hpp | 13 +-- .../boost/test/detail/wrap_stringstream.hpp | 32 ++----- include/boost/test/execution_monitor.hpp | 84 ++++++++--------- .../boost/test/floating_point_comparison.hpp | 22 +---- .../boost/test/included/prg_exec_monitor.hpp | 10 +-- .../boost/test/included/test_exec_monitor.hpp | 13 +-- .../test/included/unit_test_framework.hpp | 13 +-- include/boost/test/minimal.hpp | 10 +-- include/boost/test/test_case_template.hpp | 10 +-- include/boost/test/test_tools.hpp | 89 +++++++------------ include/boost/test/unit_test.hpp | 12 +-- include/boost/test/unit_test_log.hpp | 13 +-- .../boost/test/unit_test_log_formatter.hpp | 10 +-- include/boost/test/unit_test_result.hpp | 14 +-- include/boost/test/unit_test_suite.hpp | 15 +--- include/boost/test/unit_test_suite_ex.hpp | 10 +-- src/cpp_main.cpp | 16 +--- src/execution_monitor.cpp | 23 +---- src/supplied_log_formatters.cpp | 16 +--- src/test_main.cpp | 13 +-- src/test_tools.cpp | 28 +----- src/unit_test_log.cpp | 19 +--- src/unit_test_main.cpp | 11 +-- src/unit_test_monitor.cpp | 17 +--- src/unit_test_parameters.cpp | 10 +-- src/unit_test_result.cpp | 20 +---- src/unit_test_suite.cpp | 16 +--- test/Jamfile | 3 +- test/auto_unit_test_test.cpp | 16 +--- test/auto_unit_test_test_mult1.cpp | 7 +- test/auto_unit_test_test_mult2.cpp | 7 +- test/custom_exception_test.cpp | 44 ++++----- test/errors_handling_test.cpp | 32 +------ test/minimal_test.cpp | 16 +--- test/online_test.cpp | 16 +--- test/output_test_stream_test.cpp | 25 +----- test/parameterized_test_test.cpp | 31 +------ test/prg_exec_fail1.cpp | 19 +--- test/prg_exec_fail2.cpp | 19 +--- test/prg_exec_fail3.cpp | 13 +-- test/prg_exec_fail4.cpp | 10 +-- test/result_report_test.cpp | 19 +--- test/test_case_template_test.cpp | 14 +-- test/test_exec_fail1.cpp | 21 +---- test/test_exec_fail2.cpp | 19 +--- test/test_exec_fail3.cpp | 19 +--- test/test_exec_fail4.cpp | 19 +--- test/test_fp_comparisons.cpp | 18 +--- test/test_tools_test.cpp | 54 +---------- test/unit_test_suite_ex_test.cpp | 16 +--- 58 files changed, 264 insertions(+), 906 deletions(-) diff --git a/build/Jamfile b/build/Jamfile index 7f4ce1d6..3fd692d4 100644 --- a/build/Jamfile +++ b/build/Jamfile @@ -40,7 +40,7 @@ template boost_test_lib ## sources ## : ## requirements ## - : $(BOOST_ROOT) <*>-w-8080 + : $(BOOST_ROOT) <*>-w-8080 BOOST_TEST_NO_AUTO_LINK=1 ## default build ## : single/multi static/dynamic ; @@ -76,3 +76,23 @@ install test lib boost_test_exec_monitor boost_unit_test_framework ; + +stage stage/lib + : + [ unless $(NT) : + boost_prg_exec_monitor + boost_test_exec_monitor + boost_unit_test_framework ] + boost_prg_exec_monitor + boost_test_exec_monitor + boost_unit_test_framework + + : + $(BOOST_ROOT) + common-stage-tag + -$(version-tag) + stage + all + : + debug release + ; diff --git a/example/exec_mon_example.cpp b/example/exec_mon_example.cpp index 1af96692..bf31058c 100644 --- a/example/exec_mon_example.cpp +++ b/example/exec_mon_example.cpp @@ -11,64 +11,64 @@ struct my_exception1 { - explicit my_exception1( int res_code ) : m_res_code( res_code ) {} + explicit my_exception1( int res_code ) : m_res_code( res_code ) {} - int m_res_code; + int m_res_code; }; struct my_exception2 { - explicit my_exception2( int res_code ) : m_res_code( res_code ) {} + explicit my_exception2( int res_code ) : m_res_code( res_code ) {} - int m_res_code; + int m_res_code; }; struct dangerous_call_monitor : boost::execution_monitor { - explicit dangerous_call_monitor( int argc ) : m_argc( argc ) {} + explicit dangerous_call_monitor( int argc ) : m_argc( argc ) {} - virtual int function() - { - // here we perform some operation under monitoring that could throw my_exception - if( m_argc < 2 ) - throw my_exception1( 23 ); - if( m_argc > 3 ) - throw my_exception2( 45 ); - else if( m_argc > 2 ) - throw "too many args"; + virtual int function() + { + // here we perform some operation under monitoring that could throw my_exception + if( m_argc < 2 ) + throw my_exception1( 23 ); + if( m_argc > 3 ) + throw my_exception2( 45 ); + else if( m_argc > 2 ) + throw "too many args"; - return 1; - } + return 1; + } - int m_argc; + int m_argc; }; void translate_my_exception1( my_exception1 const& ex ) { - std::cout << "Caught my_exception1(" << ex.m_res_code << ")"<< std::endl; + std::cout << "Caught my_exception1(" << ex.m_res_code << ")"<< std::endl; } void translate_my_exception2( my_exception2 const& ex ) { - std::cout << "Caught my_exception2(" << ex.m_res_code << ")"<< std::endl; + std::cout << "Caught my_exception2(" << ex.m_res_code << ")"<< std::endl; } int main( int argc , char *[] ) { - dangerous_call_monitor the_monitor( argc ); + dangerous_call_monitor the_monitor( argc ); - the_monitor.register_exception_translator( &translate_my_exception1 ); - the_monitor.register_exception_translator( &translate_my_exception2 ); + the_monitor.register_exception_translator( &translate_my_exception1 ); + the_monitor.register_exception_translator( &translate_my_exception2 ); - try { - the_monitor.execute(); - } - catch ( boost::execution_exception const& ex ) { - std::cout << "Caught exception: " << ex.what() << std::endl; - } + try { + the_monitor.execute(); + } + catch ( boost::execution_exception const& ex ) { + std::cout << "Caught exception: " << ex.what() << std::endl; + } - return 0; + return 0; } // EOF diff --git a/include/boost/test/auto_unit_test.hpp b/include/boost/test/auto_unit_test.hpp index b845696c..9a782ddf 100644 --- a/include/boost/test/auto_unit_test.hpp +++ b/include/boost/test/auto_unit_test.hpp @@ -74,17 +74,8 @@ init_unit_test_suite( int /* argc */, char* /* argv */ [] ) { // Revision History : // // $Log$ -// Revision 1.6 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.5 2003/11/02 06:16:14 rogeeff -// fixed to support multi-module unit testing -// -// Revision 1.4 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.3 2003/06/09 08:40:26 rogeeff -// 1.30.beta1 +// Revision 1.7 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/detail/class_properties.hpp b/include/boost/test/detail/class_properties.hpp index ce5b4b49..ad1e82e0 100644 --- a/include/boost/test/detail/class_properties.hpp +++ b/include/boost/test/detail/class_properties.hpp @@ -61,14 +61,8 @@ private: // Revision History : // // $Log$ -// Revision 1.12 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.11 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.10 2003/06/09 08:39:28 rogeeff -// 1.30.beta1 +// Revision 1.13 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/detail/nullstream.hpp b/include/boost/test/detail/nullstream.hpp index dffe02fb..bd38d59c 100644 --- a/include/boost/test/detail/nullstream.hpp +++ b/include/boost/test/detail/nullstream.hpp @@ -84,14 +84,8 @@ typedef basic_onullstream wonullstream; // Revision History : // // $Log$ -// Revision 1.6 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.5 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.4 2003/06/09 08:39:28 rogeeff -// 1.30.beta1 +// Revision 1.7 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/detail/supplied_log_formatters.hpp b/include/boost/test/detail/supplied_log_formatters.hpp index bf1aff2d..cd9d2a67 100755 --- a/include/boost/test/detail/supplied_log_formatters.hpp +++ b/include/boost/test/detail/supplied_log_formatters.hpp @@ -90,14 +90,8 @@ private: // Revision History : // // $Log$ -// Revision 1.3 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.2 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.1 2003/07/02 09:15:57 rogeeff -// move log formatter in public interface +// Revision 1.4 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/detail/unit_test_config.hpp b/include/boost/test/detail/unit_test_config.hpp index e142a695..8ac57666 100644 --- a/include/boost/test/detail/unit_test_config.hpp +++ b/include/boost/test/detail/unit_test_config.hpp @@ -55,14 +55,8 @@ using std::distance; // Revision History : // // $Log$ -// Revision 1.15 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.14 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.13 2003/06/09 08:39:28 rogeeff -// 1.30.beta1 +// Revision 1.16 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/detail/unit_test_monitor.hpp b/include/boost/test/detail/unit_test_monitor.hpp index e33805ee..1d45327c 100644 --- a/include/boost/test/detail/unit_test_monitor.hpp +++ b/include/boost/test/detail/unit_test_monitor.hpp @@ -56,16 +56,16 @@ public: static void catch_system_errors( bool yes_no = true ) { s_catch_system_errors = yes_no; } // monitor method - error_level execute_and_translate( test_case* target_test_case_, function_to_monitor f_, int timeout_ ); + error_level execute_and_translate( test_case* target_test_case_, function_to_monitor f_, int timeout_ ); // execution monitor hook implementation virtual int function(); private: // Data members - function_to_monitor m_test_case_method; - test_case* m_test_case; - static bool s_catch_system_errors; + function_to_monitor m_test_case_method; + test_case* m_test_case; + static bool s_catch_system_errors; }; // unit_test_monitor } // namespace detail @@ -84,17 +84,8 @@ private: // Revision History : // // $Log$ -// Revision 1.12 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.11 2003/11/02 06:21:33 rogeeff -// use shared global monitor for all test cases -// -// Revision 1.10 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.9 2003/06/09 08:39:28 rogeeff -// 1.30.beta1 +// Revision 1.13 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/detail/unit_test_parameters.hpp b/include/boost/test/detail/unit_test_parameters.hpp index a4089175..3b607b48 100644 --- a/include/boost/test/detail/unit_test_parameters.hpp +++ b/include/boost/test/detail/unit_test_parameters.hpp @@ -51,17 +51,8 @@ std::string retrieve_framework_parameter( c_string_literal parameter_name_, int* // Revision History : // // $Log$ -// Revision 1.11 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.10 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.9 2003/06/10 03:36:51 rogeeff -// UNDEF report level introduced -// -// Revision 1.8 2003/06/09 08:39:28 rogeeff -// 1.30.beta1 +// Revision 1.12 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/detail/wrap_stringstream.hpp b/include/boost/test/detail/wrap_stringstream.hpp index f78e62ba..9b3ce2cb 100644 --- a/include/boost/test/detail/wrap_stringstream.hpp +++ b/include/boost/test/detail/wrap_stringstream.hpp @@ -111,8 +111,8 @@ operator<<( wrap_stringstream& targ, wrap_stringstream& src ) inline wrap_stringstream& operator<<( wrap_stringstream& targ, std::ios_base& (*man)(std::ios_base&) ) { - targ.stream() << man; - return targ; + targ.stream() << man; + return targ; } //____________________________________________________________________________// @@ -121,8 +121,8 @@ template inline wrap_stringstream& operator<<( wrap_stringstream& targ, std::basic_ostream& (*man)(std::basic_ostream&) ) { - targ.stream() << man; - return targ; + targ.stream() << man; + return targ; } //____________________________________________________________________________// @@ -131,8 +131,8 @@ template inline wrap_stringstream& operator<<( wrap_stringstream& targ, std::basic_ios& (*man)(std::basic_ios&) ) { - targ.stream() << man; - return targ; + targ.stream() << man; + return targ; } #endif @@ -150,24 +150,8 @@ operator<<( wrap_stringstream& targ, std::basic_ios& (*man)(std::basic // Revision History : // // $Log$ -// Revision 1.8 2003/11/28 15:20:47 johnmaddock -// Added fix for gcc2.95 -// -// Revision 1.7 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.6 2003/11/02 06:21:57 rogeeff -// added stl manipulators support -// -// Revision 1.5 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.4 2003/07/09 21:22:24 jmaurer -// define str() before it is first used to avoid "redeclared inline after -// begin called" error on IRIX MIPSpro -// -// Revision 1.3 2003/06/09 08:39:28 rogeeff -// 1.30.beta1 +// Revision 1.9 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/execution_monitor.hpp b/include/boost/test/execution_monitor.hpp index dc6fe060..9c7de3d0 100644 --- a/include/boost/test/execution_monitor.hpp +++ b/include/boost/test/execution_monitor.hpp @@ -51,20 +51,20 @@ namespace detail { class translate_exception_base { public: - // Constructor - explicit translate_exception_base( boost::scoped_ptr& next ) - { - next.swap( m_next ); - } + // Constructor + explicit translate_exception_base( boost::scoped_ptr& next ) + { + next.swap( m_next ); + } - // Destructor - virtual ~translate_exception_base() {} + // Destructor + virtual ~translate_exception_base() {} - virtual int operator()( boost::execution_monitor& mon ) = 0; + virtual int operator()( boost::execution_monitor& mon ) = 0; protected: - // Data members - boost::scoped_ptr m_next; + // Data members + boost::scoped_ptr m_next; }; } @@ -150,15 +150,15 @@ public: virtual int function() = 0; // user supplied function called by run_function() - int run_function(); - // call function() and translate user exceptions with translators registered + int run_function(); + // call function() and translate user exceptions with translators registered - template - void register_exception_translator( ExceptionTranslator const& tr, boost::type* = 0 ); + template + void register_exception_translator( ExceptionTranslator const& tr, boost::type* = 0 ); private: - // Data members - boost::scoped_ptr m_custom_translators; + // Data members + boost::scoped_ptr m_custom_translators; }; // execution_monitor @@ -171,26 +171,26 @@ namespace detail { template class translate_exception : public translate_exception_base { - typedef boost::scoped_ptr base_ptr; + typedef boost::scoped_ptr base_ptr; public: - explicit translate_exception( ExceptionTranslator const& tr, base_ptr& next ) - : translate_exception_base( next ), m_translator( tr ) {} + explicit translate_exception( ExceptionTranslator const& tr, base_ptr& next ) + : translate_exception_base( next ), m_translator( tr ) {} - virtual int operator()( boost::execution_monitor& mon ) - { - try { - return m_next ? (*m_next)( mon ) : mon.function(); - } - catch( Exception const& e ) - { - m_translator( e ); - return true; - } - } + virtual int operator()( boost::execution_monitor& mon ) + { + try { + return m_next ? (*m_next)( mon ) : mon.function(); + } + catch( Exception const& e ) + { + m_translator( e ); + return true; + } + } private: - // Data members - ExceptionTranslator m_translator; + // Data members + ExceptionTranslator m_translator; }; } // namespace detail @@ -199,8 +199,8 @@ template void execution_monitor::register_exception_translator( ExceptionTranslator const& tr, boost::type* ) { - m_custom_translators.reset( - new detail::translate_exception( tr,m_custom_translators ) ); + m_custom_translators.reset( + new detail::translate_exception( tr,m_custom_translators ) ); } } // namespace boost @@ -209,20 +209,8 @@ execution_monitor::register_exception_translator( ExceptionTranslator const& tr, // Revision History : // // $Log$ -// Revision 1.13 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.12 2003/11/02 06:16:56 rogeeff -// custom exception translator registration support -// -// Revision 1.11 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.10 2003/09/14 12:40:04 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.9 2003/06/09 08:41:02 rogeeff -// 1.30.beta1 +// Revision 1.14 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/floating_point_comparison.hpp b/include/boost/test/floating_point_comparison.hpp index 19e184f1..e382c83e 100644 --- a/include/boost/test/floating_point_comparison.hpp +++ b/include/boost/test/floating_point_comparison.hpp @@ -80,8 +80,8 @@ public: } // Public properties - BOOST_READONLY_PROPERTY( FPT, 0, () ) p_fraction_tolerance; - BOOST_READONLY_PROPERTY( bool, 0, () ) p_strong_or_weak; + BOOST_READONLY_PROPERTY( FPT, 0, () ) p_fraction_tolerance; + BOOST_READONLY_PROPERTY( bool, 0, () ) p_strong_or_weak; }; //____________________________________________________________________________// @@ -119,22 +119,8 @@ compute_tolerance( FPT tolerance ) // Revision History : // // $Log$ -// Revision 1.12 2003/11/06 07:38:57 rogeeff -// Licence update -// Floating point check reworked (Is not backward compartible!!!) -// Some annoying MSVC wrnings suppressed -// -// Revision 1.11 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.10 2003/07/15 09:00:46 rogeeff -// eliminate tolerance definition by number of rounding errors -// -// Revision 1.9 2003/07/02 09:15:57 rogeeff -// move log formatter in public interface -// -// Revision 1.8 2003/06/09 08:43:47 rogeeff -// added comparison type and algorithm constructor accepting it +// Revision 1.13 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/included/prg_exec_monitor.hpp b/include/boost/test/included/prg_exec_monitor.hpp index 80043f74..ac06f383 100644 --- a/include/boost/test/included/prg_exec_monitor.hpp +++ b/include/boost/test/included/prg_exec_monitor.hpp @@ -23,14 +23,8 @@ // Revision History : // // $Log$ -// Revision 1.4 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.3 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.2 2003/06/09 08:40:00 rogeeff -// 1.30.beta1 +// Revision 1.5 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/included/test_exec_monitor.hpp b/include/boost/test/included/test_exec_monitor.hpp index 4ee084a7..75f1acfd 100644 --- a/include/boost/test/included/test_exec_monitor.hpp +++ b/include/boost/test/included/test_exec_monitor.hpp @@ -33,17 +33,8 @@ // Revision History : // // $Log$ -// Revision 1.6 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.5 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.4 2003/07/02 09:15:57 rogeeff -// move log formatter in public interface -// -// Revision 1.3 2003/06/09 08:40:00 rogeeff -// 1.30.beta1 +// Revision 1.7 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/included/unit_test_framework.hpp b/include/boost/test/included/unit_test_framework.hpp index 75ba1666..b07b547a 100644 --- a/include/boost/test/included/unit_test_framework.hpp +++ b/include/boost/test/included/unit_test_framework.hpp @@ -32,17 +32,8 @@ // Revision History : // // $Log$ -// Revision 1.5 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.4 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.3 2003/07/02 09:15:57 rogeeff -// move log formatter in public interface -// -// Revision 1.2 2003/06/09 08:40:00 rogeeff -// 1.30.beta1 +// Revision 1.6 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/minimal.hpp b/include/boost/test/minimal.hpp index 5f8d6e80..9a7e876f 100644 --- a/include/boost/test/minimal.hpp +++ b/include/boost/test/minimal.hpp @@ -145,14 +145,8 @@ int main( int argc, char* argv[] ) // Revision History : // // $Log$ -// Revision 1.10 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.9 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.8 2003/06/09 08:41:01 rogeeff -// 1.30.beta1 +// Revision 1.11 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/test_case_template.hpp b/include/boost/test/test_case_template.hpp index 41b7dec6..708185b4 100644 --- a/include/boost/test/test_case_template.hpp +++ b/include/boost/test/test_case_template.hpp @@ -130,14 +130,8 @@ create_test_case_template( TestCaseTemplate, TestTypesList, std::string name_ ) // Revision History : // // $Log$ -// Revision 1.3 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.2 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.1 2003/06/09 08:50:32 rogeeff -// zero arity function template based test case +// Revision 1.4 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/test_tools.hpp b/include/boost/test/test_tools.hpp index 5e828f51..c50590f3 100644 --- a/include/boost/test/test_tools.hpp +++ b/include/boost/test/test_tools.hpp @@ -36,29 +36,29 @@ // ************** TOOL BOX ************** // // ************************************************************************** // -#define BOOST_CHECKPOINT(message_) \ - boost::test_toolbox::detail::checkpoint_impl( \ - boost::wrap_stringstream().ref() << message_, __FILE__, __LINE__) \ +#define BOOST_CHECKPOINT(message_) \ + boost::test_toolbox::detail::checkpoint_impl( \ + boost::wrap_stringstream().ref() << message_, __FILE__, __LINE__) \ /**/ -#define BOOST_WARN(predicate) \ - boost::test_toolbox::detail::warn_and_continue_impl((predicate), \ - boost::wrap_stringstream().ref() << #predicate, __FILE__, __LINE__) \ +#define BOOST_WARN(predicate) \ + boost::test_toolbox::detail::warn_and_continue_impl((predicate), \ + boost::wrap_stringstream().ref() << #predicate, __FILE__, __LINE__) \ /**/ -#define BOOST_CHECK(predicate) \ - boost::test_toolbox::detail::test_and_continue_impl((predicate), \ - boost::wrap_stringstream().ref() << #predicate, __FILE__, __LINE__) \ +#define BOOST_CHECK(predicate) \ + boost::test_toolbox::detail::test_and_continue_impl((predicate), \ + boost::wrap_stringstream().ref() << #predicate, __FILE__, __LINE__) \ /**/ -#define BOOST_CHECK_EQUAL(left_, right_) \ - boost::test_toolbox::detail::equal_and_continue_impl((left_), (right_), \ +#define BOOST_CHECK_EQUAL(left_, right_) \ + boost::test_toolbox::detail::equal_and_continue_impl((left_), (right_), \ boost::wrap_stringstream().ref() << #left_ " == " #right_, __FILE__, __LINE__) /**/ #define BOOST_CHECK_CLOSE(left_, right_, tolerance) \ boost::test_toolbox::detail::compare_and_continue_impl((left_), (right_), (tolerance),\ - #left_, #right_, __FILE__, __LINE__) + #left_, #right_, __FILE__, __LINE__) /**/ #define BOOST_BITWISE_EQUAL(left_, right_) \ @@ -107,18 +107,18 @@ #define BOOST_FAIL(message_) BOOST_REQUIRE_MESSAGE( false, message_ ) -#define BOOST_CHECK_THROW( statement, exception ) \ - try { statement; BOOST_ERROR( "exception "#exception" is expected" ); } \ - catch( exception const& ) { \ - BOOST_CHECK_MESSAGE( true, "exception "#exception" is caught" ); \ - } \ +#define BOOST_CHECK_THROW( statement, exception ) \ + try { statement; BOOST_ERROR( "exception "#exception" is expected" ); } \ + catch( exception const& ) { \ + BOOST_CHECK_MESSAGE( true, "exception "#exception" is caught" ); \ + } \ /**/ -#define BOOST_CHECK_EXCEPTION( statement, exception, predicate ) \ - try { statement; BOOST_ERROR( "exception "#exception" is expected" ); } \ - catch( exception const& ex ) { \ - BOOST_CHECK_MESSAGE( predicate( ex ), "incorrect exception "#exception" is caught" ); \ - } \ +#define BOOST_CHECK_EXCEPTION( statement, exception, predicate ) \ + try { statement; BOOST_ERROR( "exception "#exception" is expected" ); } \ + catch( exception const& ex ) { \ + BOOST_CHECK_MESSAGE( predicate( ex ), "incorrect exception "#exception" is caught" ); \ + } \ /**/ #define BOOST_IGNORE_CHECK( e ) true @@ -313,7 +313,7 @@ test_and_continue_impl( extended_predicate_value const& v_, wrap_stringstream& m //____________________________________________________________________________// // Borland bug workaround -#if defined(__BORLANDC__) && (__BORLANDC__ < 0x560) +#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x570)) bool test_and_continue_impl( void* ptr, wrap_stringstream& message_, c_string_literal file_name_, std::size_t line_num_, @@ -418,19 +418,19 @@ inline bool equal_and_continue_impl( Left const& left_, Right const& right_, wrap_stringstream& message_, c_string_literal file_name_, std::size_t line_num_, unit_test_framework::log_level log_level_ = unit_test_framework::log_all_errors, - std::size_t pos = (std::size_t)-1 ) + std::size_t pos = (std::size_t)-1 ) { extended_predicate_value predicate( left_ == right_ ); if( !predicate ) { - wrap_stringstream error_message; + wrap_stringstream error_message; error_message.ref() << "test " << message_ << " failed"; - if( pos != (std::size_t)-1 ) - error_message.ref() << " in a position " << pos; + if( pos != (std::size_t)-1 ) + error_message.ref() << " in a position " << pos; error_message.ref() << " [" - << print_helper( left_ ) << " != " + << print_helper( left_ ) << " != " << print_helper( right_ ) << "]"; return test_and_continue_impl( predicate, error_message, file_name_, line_num_, false, log_level_ ); @@ -449,8 +449,8 @@ equal_and_continue_impl( Left left_begin_, Left left_end_, Right right_begin_, c_string_literal file_name_, std::size_t line_num_, unit_test_framework::log_level log_level_ = unit_test_framework::log_all_errors ) { - std::size_t pos = 0; - for( ; left_begin_ != left_end_; ++left_begin_, ++right_begin_, ++pos ) + std::size_t pos = 0; + for( ; left_begin_ != left_end_; ++left_begin_, ++right_begin_, ++pos ) equal_and_continue_impl( *left_begin_, *right_begin_, message_, file_name_, line_num_, log_level_, pos ); } @@ -579,33 +579,8 @@ private: // Revision History : // // $Log$ -// Revision 1.34 2003/11/06 07:38:58 rogeeff -// Licence update -// Floating point check reworked (Is not backward compartible!!!) -// Some annoying MSVC wrnings suppressed -// -// Revision 1.33 2003/11/02 06:19:55 rogeeff -// custom exception translator registration support -// added position for the collection comparison results error message -// special log print methods for char values -// BOOST_IGNORE_CHECK - to be used with BOOST_CHECK_EXCEPTION -// some macro allignment -// -// Revision 1.32 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.31 2003/07/15 09:00:46 rogeeff -// eliminate tolerance definition by number of rounding errors -// -// Revision 1.30 2003/06/20 10:56:26 rogeeff -// printing posponed differently -// extended predicate value allowed to reset the value -// -// Revision 1.29 2003/06/09 08:55:08 rogeeff -// BOOST_CHECK_EXCEPTION introduced -// type for line parameter changed to size_t -// support for using types without operator<< implemented -// support for extended user defined predicates that could return cause of error +// Revision 1.35 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/unit_test.hpp b/include/boost/test/unit_test.hpp index 0de5bb4a..7bc4cee1 100644 --- a/include/boost/test/unit_test.hpp +++ b/include/boost/test/unit_test.hpp @@ -18,7 +18,7 @@ #include #include -#if 0 // BOOST_TEST_NO_AUTO_LINK +#ifndef BOOST_TEST_NO_AUTO_LINK #define BOOST_LIB_NAME unix_test_framework #define BOOST_LIB_DIAGNOSTIC yes @@ -30,14 +30,8 @@ // Revision History : // // $Log$ -// Revision 1.9 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.8 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.7 2003/06/09 08:41:42 rogeeff -// 1.30.beta1 +// Revision 1.10 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/unit_test_log.hpp b/include/boost/test/unit_test_log.hpp index 637d75f8..67ae3d10 100644 --- a/include/boost/test/unit_test_log.hpp +++ b/include/boost/test/unit_test_log.hpp @@ -225,17 +225,8 @@ private: // Revision History : // // $Log$ -// Revision 1.19 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.18 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.17 2003/07/02 09:15:57 rogeeff -// move log formatter in public interface -// -// Revision 1.16 2003/06/09 08:56:15 rogeeff -// test_case_csope_tracker introduced for correct exception unwinding handling +// Revision 1.20 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/unit_test_log_formatter.hpp b/include/boost/test/unit_test_log_formatter.hpp index c21f32c2..86b1e6ed 100755 --- a/include/boost/test/unit_test_log_formatter.hpp +++ b/include/boost/test/unit_test_log_formatter.hpp @@ -78,14 +78,8 @@ private: // Revision History : // // $Log$ -// Revision 1.3 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.2 2003/10/27 07:13:12 rogeeff -// licence update -// -// Revision 1.1 2003/07/02 09:15:57 rogeeff -// move log formatter in public interface +// Revision 1.4 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/unit_test_result.hpp b/include/boost/test/unit_test_result.hpp index 28b88497..b4fce953 100644 --- a/include/boost/test/unit_test_result.hpp +++ b/include/boost/test/unit_test_result.hpp @@ -127,18 +127,8 @@ struct unit_test_result_tracker { // Revision History : // // $Log$ -// Revision 1.17 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.16 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.15 2003/06/20 10:57:25 rogeeff -// gcc warning fix -// -// Revision 1.14 2003/06/09 08:58:40 rogeeff -// unit_test_result_tracker introduced for correct exception handling -// method has_passed introduced to support dependencies +// Revision 1.18 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/unit_test_suite.hpp b/include/boost/test/unit_test_suite.hpp index 6b986b42..a8ecb0fc 100644 --- a/include/boost/test/unit_test_suite.hpp +++ b/include/boost/test/unit_test_suite.hpp @@ -116,7 +116,7 @@ template void register_exception_translator( ExceptionTranslator const& tr, boost::type* d = 0 ) { - the_monitor.register_exception_translator( tr, d ); + the_monitor.register_exception_translator( tr, d ); } //____________________________________________________________________________// @@ -324,17 +324,8 @@ create_test_case( void (UserTestCase::*fct_)( ParamType ), std::string name_, bo // Revision History : // // $Log$ -// Revision 1.17 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.16 2003/11/02 06:20:55 rogeeff -// register_exception_translator added for unit test framework -// -// Revision 1.15 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.14 2003/06/09 09:00:09 rogeeff -// methods has_passed and depend_on introduced to manage dependencies +// Revision 1.18 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/include/boost/test/unit_test_suite_ex.hpp b/include/boost/test/unit_test_suite_ex.hpp index 188523bb..7165fac3 100644 --- a/include/boost/test/unit_test_suite_ex.hpp +++ b/include/boost/test/unit_test_suite_ex.hpp @@ -109,14 +109,8 @@ create_test_case( function1 const& fct_, std::string name_, // Revision History : // // $Log$ -// Revision 1.14 2003/11/06 07:39:36 rogeeff -// Licence update -// -// Revision 1.13 2003/10/27 07:13:13 rogeeff -// licence update -// -// Revision 1.12 2003/06/09 09:00:44 rogeeff -// 1.30.beta1 +// Revision 1.15 2003/12/01 00:41:56 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/cpp_main.cpp b/src/cpp_main.cpp index 6d2afc2a..52e070a0 100644 --- a/src/cpp_main.cpp +++ b/src/cpp_main.cpp @@ -99,20 +99,8 @@ int main( int argc, char* argv[] ) // Revision History : // // $Log$ -// Revision 1.12 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.11 2003/10/27 07:13:31 rogeeff -// licence update -// -// Revision 1.10 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.9 2003/07/11 16:26:21 jmaurer -// need before being able to use std::strcmp etc. -// -// Revision 1.8 2003/06/09 09:12:26 rogeeff -// straiten return code logic for Program Execution Monitor +// Revision 1.13 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/execution_monitor.cpp b/src/execution_monitor.cpp index 92935152..33ca6ced 100644 --- a/src/execution_monitor.cpp +++ b/src/execution_monitor.cpp @@ -182,7 +182,7 @@ assert_reporting_function( int reportType, char* userMessage, int* retVal ) int execution_monitor::run_function() { - return m_custom_translators ? (*m_custom_translators)( *this ) : function(); + return m_custom_translators ? (*m_custom_translators)( *this ) : function(); } //____________________________________________________________________________// @@ -583,26 +583,9 @@ static void report_error( execution_exception::error_code ec, c_string_literal m // Revision History : // // $Log$ -// Revision 1.28 2003/11/06 07:31:12 rogeeff -// Licence update +// Revision 1.29 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // -// Revision 1.27 2003/11/02 04:43:09 rogeeff -// custom exception translators support -// -// Revision 1.26 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.25 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.24 2003/06/10 03:34:28 rogeeff -// desable SEH if BOOST_DISABLE_WIN32 in effect -// -// Revision 1.23 2003/06/09 09:13:05 rogeeff -// 1.30.beta1 -// -// Revision 1.22 2003/05/02 17:57:40 beman_dawes -// como can't do structured exceptions // *************************************************************************** diff --git a/src/supplied_log_formatters.cpp b/src/supplied_log_formatters.cpp index bdd0c1d2..d12611ae 100755 --- a/src/supplied_log_formatters.cpp +++ b/src/supplied_log_formatters.cpp @@ -315,20 +315,8 @@ xml_log_formatter::print_indent( std::ostream& output ) // Revision History : // // $Log$ -// Revision 1.5 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.4 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.3 2003/07/15 08:31:24 rogeeff -// *** empty log message *** -// -// Revision 1.2 2003/07/09 12:51:29 jmaurer -// avoid "unused parameter" warnings with gcc -// -// Revision 1.1 2003/07/02 09:11:24 rogeeff -// move log formatter in public interface +// Revision 1.6 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/test_main.cpp b/src/test_main.cpp index c1b22270..187a1ae8 100644 --- a/src/test_main.cpp +++ b/src/test_main.cpp @@ -98,17 +98,8 @@ int main( int argc, char* argv[] ) { // Revision History : // // $Log$ -// Revision 1.14 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.13 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.12 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.11 2003/06/09 09:10:50 rogeeff -// added support for catch_system_error in Test Execution Monitor +// Revision 1.15 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/test_tools.cpp b/src/test_tools.cpp index 4a8c7d44..7dfd907f 100644 --- a/src/test_tools.cpp +++ b/src/test_tools.cpp @@ -476,32 +476,8 @@ output_test_stream::sync() // Revision History : // // $Log$ -// Revision 1.24 2003/11/28 15:20:24 johnmaddock -// Added fix for gcc2.95 -// -// Revision 1.23 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.22 2003/11/02 06:01:05 rogeeff -// custom char value log print procedues -// -// Revision 1.21 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.20 2003/07/02 09:11:24 rogeeff -// move log formatter in public interface -// -// Revision 1.19 2003/06/23 22:37:13 beman_dawes -// workaround broken std libraries -// -// Revision 1.18 2003/06/20 18:13:54 beman_dawes -// fix some but not all problems with previous commit -// -// Revision 1.17 2003/06/20 11:01:15 rogeeff -// match_pattern show an error mismatch snippet -// -// Revision 1.16 2003/06/09 09:14:35 rogeeff -// added support for extended users predicate returning also error message +// Revision 1.25 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/unit_test_log.cpp b/src/unit_test_log.cpp index 700ae9b6..1abbbf08 100644 --- a/src/unit_test_log.cpp +++ b/src/unit_test_log.cpp @@ -447,23 +447,8 @@ unit_test_log::checkpoint_data() const // Revision History : // // $Log$ -// Revision 1.18 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.17 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.16 2003/07/02 09:11:25 rogeeff -// move log formatter in public interface -// -// Revision 1.15 2003/06/11 04:34:22 rogeeff -// minor fix -// -// Revision 1.14 2003/06/11 01:52:09 rogeeff -// force unix slash for file name -// -// Revision 1.13 2003/06/09 09:14:57 rogeeff -// 1.30.beta1 +// Revision 1.19 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/unit_test_main.cpp b/src/unit_test_main.cpp index f94e4007..fda31586 100644 --- a/src/unit_test_main.cpp +++ b/src/unit_test_main.cpp @@ -89,15 +89,8 @@ main( int argc, char* argv[] ) // Revision History : // // $Log$ -// Revision 1.12 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.11 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.10 2003/06/09 09:16:19 rogeeff -// extract report level before passing cla to the user -// straiten result code in case of failed initialization +// Revision 1.13 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/unit_test_monitor.cpp b/src/unit_test_monitor.cpp index 70c1c5ca..4d2b72f2 100644 --- a/src/unit_test_monitor.cpp +++ b/src/unit_test_monitor.cpp @@ -36,8 +36,8 @@ bool unit_test_monitor::s_catch_system_errors = true; unit_test_monitor::error_level unit_test_monitor::execute_and_translate( test_case* target_test_case, function_to_monitor f, int timeout ) { - m_test_case = target_test_case; - m_test_case_method = f; + m_test_case = target_test_case; + m_test_case_method = f; try { execute( s_catch_system_errors, timeout ); @@ -95,17 +95,8 @@ unit_test_monitor::function() // Revision History : // // $Log$ -// Revision 1.11 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.10 2003/11/02 06:02:29 rogeeff -// use shared global unit_test_monitor -// -// Revision 1.9 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.8 2003/06/09 09:17:10 rogeeff -// 1.30.beta1 +// Revision 1.12 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/unit_test_parameters.cpp b/src/unit_test_parameters.cpp index 0570827c..d9a81390 100644 --- a/src/unit_test_parameters.cpp +++ b/src/unit_test_parameters.cpp @@ -93,14 +93,8 @@ retrieve_framework_parameter( c_string_literal parameter_name, int* argc, char** // Revision History : // // $Log$ -// Revision 1.10 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.9 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.8 2003/06/09 09:17:11 rogeeff -// 1.30.beta1 +// Revision 1.11 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/unit_test_result.cpp b/src/unit_test_result.cpp index 12bc45da..592749b2 100644 --- a/src/unit_test_result.cpp +++ b/src/unit_test_result.cpp @@ -595,24 +595,8 @@ unit_test_result::has_passed() const // Revision History : // // $Log$ -// Revision 1.21 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.20 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.19 2003/07/09 12:59:29 jmaurer -// avoid "unused parameter" warnings with gcc -// -// Revision 1.18 2003/06/10 08:00:34 rogeeff -// has_failed conseder test_case_failed != 0 as an error -// -// Revision 1.17 2003/06/10 03:35:38 rogeeff -// set report level algorithm patched -// -// Revision 1.16 2003/06/09 09:18:19 rogeeff -// First failed assertion support -// dependency support +// Revision 1.22 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/src/unit_test_suite.cpp b/src/unit_test_suite.cpp index 97675587..0f0a2c2c 100644 --- a/src/unit_test_suite.cpp +++ b/src/unit_test_suite.cpp @@ -101,7 +101,7 @@ test_case::has_passed() const void test_case::run() { - using detail::unit_test_monitor; + using detail::unit_test_monitor; test_case_scope_tracker scope_tracker( *this ); @@ -277,18 +277,8 @@ normalize_test_case_name( std::string& name_ ) // Revision History : // // $Log$ -// Revision 1.11 2003/11/06 07:31:12 rogeeff -// Licence update -// -// Revision 1.10 2003/11/02 06:03:04 rogeeff -// use shared global unit_test_monitor -// -// Revision 1.9 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.8 2003/06/09 09:21:04 rogeeff -// dependency check support -// simplified testing abort procedures +// Revision 1.12 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/Jamfile b/test/Jamfile index 60265c95..ef581958 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -22,7 +22,8 @@ rule test-btl-lib ( test-rule : test-name : lib-name ? : pattern_file ? : source return [ $(test-rule) $(source_files) ../build/$(lib-name) : #args : $(pattern_file) - : on <*>-w-8080 # requirements + : on <*>-w-8080 + BOOST_TEST_NO_AUTO_LINK=1 # requirements : $(test-name) ] ; } diff --git a/test/auto_unit_test_test.cpp b/test/auto_unit_test_test.cpp index 35ca8948..ec1c2e6f 100644 --- a/test/auto_unit_test_test.cpp +++ b/test/auto_unit_test_test.cpp @@ -32,20 +32,8 @@ BOOST_AUTO_UNIT_TEST( test2 ) // Revision History : // // $Log$ -// Revision 1.5 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.4 2003/11/02 06:13:27 rogeeff -// 2 new tests added: multiple module auto unit testing and custom exception translator regitry unit test -// -// Revision 1.3 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.2 2003/06/09 09:23:03 rogeeff -// 1.30.beta1 -// -// Revision 1.1 2002/12/09 05:13:31 rogeeff -// Initial commit +// Revision 1.6 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/auto_unit_test_test_mult1.cpp b/test/auto_unit_test_test_mult1.cpp index 593cd756..22d5ba8c 100644 --- a/test/auto_unit_test_test_mult1.cpp +++ b/test/auto_unit_test_test_mult1.cpp @@ -27,11 +27,8 @@ BOOST_AUTO_UNIT_TEST( test ) // Revision History : // // $Log$ -// Revision 1.2 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.1 2003/11/02 06:13:27 rogeeff -// 2 new tests added: multiple module auto unit testing and custom exception translator regitry unit test +// Revision 1.3 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/auto_unit_test_test_mult2.cpp b/test/auto_unit_test_test_mult2.cpp index e42212cb..6a7c21c3 100644 --- a/test/auto_unit_test_test_mult2.cpp +++ b/test/auto_unit_test_test_mult2.cpp @@ -26,11 +26,8 @@ BOOST_AUTO_UNIT_TEST( test ) // Revision History : // // $Log$ -// Revision 1.2 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.1 2003/11/02 06:13:27 rogeeff -// 2 new tests added: multiple module auto unit testing and custom exception translator regitry unit test +// Revision 1.3 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/custom_exception_test.cpp b/test/custom_exception_test.cpp index 91493e8d..31d247f8 100644 --- a/test/custom_exception_test.cpp +++ b/test/custom_exception_test.cpp @@ -20,55 +20,55 @@ using namespace boost::unit_test_framework; struct my_exception1 { - explicit my_exception1( int res_code ) : m_res_code( res_code ) {} + explicit my_exception1( int res_code ) : m_res_code( res_code ) {} - int m_res_code; + int m_res_code; }; struct my_exception2 { - explicit my_exception2( int res_code ) : m_res_code( res_code ) {} + explicit my_exception2( int res_code ) : m_res_code( res_code ) {} - int m_res_code; + int m_res_code; }; //____________________________________________________________________________// void throw_my_exception1() { - throw my_exception1( 12 ); + throw my_exception1( 12 ); } void my_exception1_translator( my_exception1 ) { - BOOST_MESSAGE( "Caught my_exception1" ); + BOOST_MESSAGE( "Caught my_exception1" ); } //____________________________________________________________________________// void throw_my_exception2() { - throw my_exception1( 89 ); + throw my_exception1( 89 ); } void my_exception2_translator( my_exception2 ) { - BOOST_MESSAGE( "Caught my_exception2" ); + BOOST_MESSAGE( "Caught my_exception2" ); } //____________________________________________________________________________// test_suite* init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) { - test_suite* test = BOOST_TEST_SUITE("custom_exception_test"); + test_suite* test = BOOST_TEST_SUITE("custom_exception_test"); - register_exception_translator( &my_exception1_translator ); - register_exception_translator( &my_exception2_translator ); + register_exception_translator( &my_exception1_translator ); + register_exception_translator( &my_exception2_translator ); - test->add( BOOST_TEST_CASE( &throw_my_exception1 ) ); - test->add( BOOST_TEST_CASE( &throw_my_exception2 ) ); + test->add( BOOST_TEST_CASE( &throw_my_exception1 ) ); + test->add( BOOST_TEST_CASE( &throw_my_exception2 ) ); - return test; + return test; } //____________________________________________________________________________// @@ -77,20 +77,8 @@ init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) { // Revision History : // // $Log$ -// Revision 1.2 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.1 2003/11/02 06:13:27 rogeeff -// 2 new tests added: multiple module auto unit testing and custom exception translator regitry unit test -// -// Revision 1.3 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.2 2003/06/09 09:23:03 rogeeff -// 1.30.beta1 -// -// Revision 1.1 2002/12/09 05:13:31 rogeeff -// Initial commit +// Revision 1.3 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/errors_handling_test.cpp b/test/errors_handling_test.cpp index c382d940..a1e478d3 100644 --- a/test/errors_handling_test.cpp +++ b/test/errors_handling_test.cpp @@ -203,14 +203,14 @@ test_main( int argc, char * argv[] ) break; case tct_param_free_function: // Borland bug workaround -#if defined(__BORLANDC__) && (__BORLANDC__ < 0x570) +#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x570)) test.add( boost::unit_test_framework::create_test_case( &bad_function_param, std::string( "bad_function_param" ), (int*)params, params+1 ) ); #else test.add( BOOST_PARAM_TEST_CASE( &bad_function_param, (int*)params, params+1 ) ); #endif break; case tct_param_user_test_case: -#if defined(__BORLANDC__) && (__BORLANDC__ < 0x570) +#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x570)) test.add( boost::unit_test_framework::create_test_case( &bad_test::test_param, std::string( "bad_test::test_param" ), bad_test_instance, (int*)params, params+1 ) ); #else test.add( BOOST_PARAM_CLASS_TEST_CASE( &bad_test::test_param, bad_test_instance, (int*)params, params+1 ) ); @@ -247,32 +247,8 @@ test_main( int argc, char * argv[] ) // Revision History : // // $Log$ -// Revision 1.16 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.15 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.14 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.13 2003/07/02 09:14:22 rogeeff -// move log formatter in public interface -// -// Revision 1.12 2003/06/09 09:23:03 rogeeff -// 1.30.beta1 -// -// Revision 1.11 2003/02/15 21:49:57 rogeeff -// borland warning fix -// -// Revision 1.10 2003/02/13 08:47:05 rogeeff -// *** empty log message *** -// -// Revision 1.9 2002/12/09 05:14:45 rogeeff -// switch to use unit_test_result_saver for internal testing -// -// Revision 1.8 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.17 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/minimal_test.cpp b/test/minimal_test.cpp index c30886b6..125aa772 100644 --- a/test/minimal_test.cpp +++ b/test/minimal_test.cpp @@ -76,20 +76,8 @@ test_main( int /*argc*/, char* /*argv*/[] ) // Revision History : // // $Log$ -// Revision 1.7 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.6 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.5 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.4 2003/02/15 21:51:56 rogeeff -// borland warnings fix -// -// Revision 1.3 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.8 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/online_test.cpp b/test/online_test.cpp index 83b29268..5c37c2f2 100644 --- a/test/online_test.cpp +++ b/test/online_test.cpp @@ -27,20 +27,8 @@ test_main( int /*argc*/, char* /*argv*/[] ) // Revision History : // // $Log$ -// Revision 1.11 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.10 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.9 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.8 2003/02/15 21:51:56 rogeeff -// borland warnings fix -// -// Revision 1.7 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.12 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/output_test_stream_test.cpp b/test/output_test_stream_test.cpp index c64acc7a..eda43eb4 100644 --- a/test/output_test_stream_test.cpp +++ b/test/output_test_stream_test.cpp @@ -125,7 +125,7 @@ test_is_equal() output << '\0'; BOOST_CHECK( output.is_equal( "", (std::size_t)1 ) ); - output << std::setw( 10 ) << "qwerty" << '\n'; + output << std::setw( 10 ) << "qwerty" << '\n'; BOOST_CHECK( output.is_equal( " qwerty\n" ) ); std::string s( "test string" ); @@ -215,27 +215,8 @@ init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) { // Revision History : // // $Log$ -// Revision 1.13 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.12 2003/11/02 06:10:02 rogeeff -// manipulator usage testing added -// -// Revision 1.11 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.10 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.9 2003/02/15 21:51:17 rogeeff -// borland warnings fix -// cwpro complains on size_t fix -// -// Revision 1.8 2002/12/09 05:15:26 rogeeff -// NULL eliminated -// -// Revision 1.7 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.14 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/parameterized_test_test.cpp b/test/parameterized_test_test.cpp index 3299cf13..47496567 100644 --- a/test/parameterized_test_test.cpp +++ b/test/parameterized_test_test.cpp @@ -49,7 +49,7 @@ void test1( int i ) //____________________________________________________________________________// -#if defined(__BORLANDC__) && (__BORLANDC__ < 0x570) +##if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x570)) #define BOOST_PARAM_TEST_CASE__( arg1, arg2, arg3 ) \ boost::unit_test_framework::create_test_case( (arg1), std::string( "" ), (arg2), (arg3) ) #else @@ -194,33 +194,8 @@ int test_main( int, char* [] ) { // Revision History : // // $Log$ -// Revision 1.10 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.9 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.8 2003/06/12 00:02:39 rogeeff -// *** empty log message *** -// -// Revision 1.7 2003/06/11 15:47:03 rogeeff -// eliminate mismatch types warning -// -// Revision 1.6 2003/06/10 07:57:33 rogeeff -// test_case_template_test added -// parameterized test updated -// -// Revision 1.5 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.4 2003/02/15 21:52:37 rogeeff -// mingw ostream fix -// -// Revision 1.3 2002/12/09 05:16:10 rogeeff -// switched to use utf::unit_test_result_saver for internal testing -// -// Revision 1.2 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.11 2003/12/01 00:42:37 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/prg_exec_fail1.cpp b/test/prg_exec_fail1.cpp index e1749662..a84eb198 100644 --- a/test/prg_exec_fail1.cpp +++ b/test/prg_exec_fail1.cpp @@ -29,23 +29,8 @@ cpp_main( int argc, char *[] ) // note the name // Revision History : // // $Log$ -// Revision 1.10 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.9 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.8 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.7 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.6 2003/02/15 21:49:58 rogeeff -// borland warning fix -// -// Revision 1.5 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.11 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/prg_exec_fail2.cpp b/test/prg_exec_fail2.cpp index d558ec1b..8ed507aa 100644 --- a/test/prg_exec_fail2.cpp +++ b/test/prg_exec_fail2.cpp @@ -26,23 +26,8 @@ int cpp_main( int, char *[] ) // note the name // Revision History : // // $Log$ -// Revision 1.10 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.9 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.8 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.7 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.6 2002/12/09 05:16:50 rogeeff -// *** empty log message *** -// -// Revision 1.5 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.11 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/prg_exec_fail3.cpp b/test/prg_exec_fail3.cpp index 3ee56cfb..cdcd0464 100644 --- a/test/prg_exec_fail3.cpp +++ b/test/prg_exec_fail3.cpp @@ -30,17 +30,8 @@ int cpp_main( int, char *[] ) // note the name // Revision History : // // $Log$ -// Revision 1.4 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.3 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.2 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.1 2002/12/09 05:13:31 rogeeff -// Initial commit +// Revision 1.5 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/prg_exec_fail4.cpp b/test/prg_exec_fail4.cpp index b7bc1b94..81cdb81e 100644 --- a/test/prg_exec_fail4.cpp +++ b/test/prg_exec_fail4.cpp @@ -24,14 +24,8 @@ int cpp_main( int, char* [] ) // note the name // Revision History : // // $Log$ -// Revision 1.3 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.2 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.1 2003/06/09 09:21:47 rogeeff -// test the Execution Monitor logic regards cpp_main return values +// Revision 1.4 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/result_report_test.cpp b/test/result_report_test.cpp index 95979f0a..4c07b1df 100644 --- a/test/result_report_test.cpp +++ b/test/result_report_test.cpp @@ -148,23 +148,8 @@ test_main( int argc, char* argv[] ) // Revision History : // // $Log$ -// Revision 1.11 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.10 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.9 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.8 2003/02/15 21:52:37 rogeeff -// mingw ostream fix -// -// Revision 1.7 2003/02/13 08:47:07 rogeeff -// *** empty log message *** -// -// Revision 1.6 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.12 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/test_case_template_test.cpp b/test/test_case_template_test.cpp index 26fe9ca0..f824c874 100644 --- a/test/test_case_template_test.cpp +++ b/test/test_case_template_test.cpp @@ -154,18 +154,8 @@ int test_main( int, char* [] ) // Revision History : // // $Log$ -// Revision 1.4 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.3 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.2 2003/06/11 04:34:22 rogeeff -// minor fix -// -// Revision 1.1 2003/06/10 07:57:33 rogeeff -// test_case_template_test added -// parameterized test updated +// Revision 1.5 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/test_exec_fail1.cpp b/test/test_exec_fail1.cpp index d33d840e..3719b387 100644 --- a/test/test_exec_fail1.cpp +++ b/test/test_exec_fail1.cpp @@ -19,7 +19,7 @@ int test_main( int, char* [] ) // note the name { - return 1; + return 1; } //____________________________________________________________________________// @@ -28,23 +28,8 @@ int test_main( int, char* [] ) // note the name // Revision History : // // $Log$ -// Revision 1.10 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.9 2003/11/02 06:10:24 rogeeff -// no message -// -// Revision 1.8 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.7 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.6 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.5 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.11 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/test_exec_fail2.cpp b/test/test_exec_fail2.cpp index 713fbbfd..22cfd325 100644 --- a/test/test_exec_fail2.cpp +++ b/test/test_exec_fail2.cpp @@ -38,23 +38,8 @@ int test_main( int, char *[] ) // note the name // Revision History : // // $Log$ -// Revision 1.10 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.9 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.8 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.7 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.6 2003/02/15 21:58:32 rogeeff -// borland warning fix -// -// Revision 1.5 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.11 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/test_exec_fail3.cpp b/test/test_exec_fail3.cpp index 8bf319e9..d866e674 100644 --- a/test/test_exec_fail3.cpp +++ b/test/test_exec_fail3.cpp @@ -32,23 +32,8 @@ int test_main( int, char*[] ) // note the name // Revision History : // // $Log$ -// Revision 1.10 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.9 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.8 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.7 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.6 2003/02/13 08:47:10 rogeeff -// *** empty log message *** -// -// Revision 1.5 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.11 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/test_exec_fail4.cpp b/test/test_exec_fail4.cpp index 44fbf8a4..0af9b442 100644 --- a/test/test_exec_fail4.cpp +++ b/test/test_exec_fail4.cpp @@ -33,23 +33,8 @@ int test_main( int argc, char* [] ) // note the name // Revision History : // // $Log$ -// Revision 1.11 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.10 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.9 2003/09/14 12:42:22 beman_dawes -// Change to new license (with Gennadiy's permission) -// -// Revision 1.8 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.7 2003/02/15 21:49:58 rogeeff -// borland warning fix -// -// Revision 1.6 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.12 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/test_fp_comparisons.cpp b/test/test_fp_comparisons.cpp index 235cfafb..b55a9d71 100644 --- a/test/test_fp_comparisons.cpp +++ b/test/test_fp_comparisons.cpp @@ -192,23 +192,9 @@ init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) { // Revision History : // // $Log$ -// Revision 1.7 2003/11/06 07:31:42 rogeeff -// Licence update +// Revision 1.8 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // -// Revision 1.6 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.5 2003/07/15 09:01:36 rogeeff -// eliminate tolerance definition by number of rounding errors -// -// Revision 1.4 2003/07/02 09:14:22 rogeeff -// move log formatter in public interface -// -// Revision 1.3 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.2 2003/02/15 21:53:39 rogeeff -// cwpro8 fix // *************************************************************************** diff --git a/test/test_tools_test.cpp b/test/test_tools_test.cpp index 30822a58..a304f9cb 100644 --- a/test/test_tools_test.cpp +++ b/test/test_tools_test.cpp @@ -81,7 +81,7 @@ normalize_file_name( char const* f ) return buffer; } -#if defined(__BORLANDC__) || defined(__IBMCPP__) +#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x570)) || BOOST_WORKAROUND(__IBMCPP__, BOOST_TESTED_AT(600)) #define CHECK_PATTERN( msg, shift ) \ (boost::wrap_stringstream().ref() << normalize_file_name( __FILE__ ) << "(" << (__LINE__-shift) << "): " << msg).str() @@ -707,56 +707,8 @@ init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) // Revision History : // // $Log$ -// Revision 1.26 2003/11/23 22:37:18 rogeeff -// *** empty log message *** -// -// Revision 1.25 2003/11/06 07:59:20 rogeeff -// *** empty log message *** -// -// Revision 1.24 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.23 2003/11/02 06:12:06 rogeeff -// manipulator usage tests added -// collections comarison tests updated -// -// Revision 1.22 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.21 2003/07/15 09:01:36 rogeeff -// eliminate tolerance definition by number of rounding errors -// -// Revision 1.20 2003/07/02 09:14:22 rogeeff -// move log formatter in public interface -// -// Revision 1.19 2003/06/20 11:01:57 rogeeff -// no message -// -// Revision 1.18 2003/06/09 09:24:47 rogeeff -// added test for: -// BOOST_TEST_DONT_PRINT_LOG_VALUE -// custom predicate -// BOOST_CHECK_EXCEPTION -// -// Revision 1.17 2003/02/18 22:17:12 rogeeff -// Visual Age fix -// -// Revision 1.16 2003/02/14 06:40:58 rogeeff -// Intel on linux fix -// -// Revision 1.15 2003/02/13 08:47:12 rogeeff -// *** empty log message *** -// -// Revision 1.14 2002/12/09 05:18:34 rogeeff -// switched to use unit_test_result_saver for internal testing -// switched to wrap_stringstream -// test cases added for the NULL char strings comparisons -// -// Revision 1.13 2002/11/02 20:23:24 rogeeff -// wrapstream copy constructor isuue fix reworked -// -// Revision 1.12 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.27 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // *************************************************************************** diff --git a/test/unit_test_suite_ex_test.cpp b/test/unit_test_suite_ex_test.cpp index 7f876f11..bb623aef 100644 --- a/test/unit_test_suite_ex_test.cpp +++ b/test/unit_test_suite_ex_test.cpp @@ -109,20 +109,8 @@ init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) { // Revision History : // // $Log$ -// Revision 1.12 2003/11/06 07:31:42 rogeeff -// Licence update -// -// Revision 1.11 2003/10/27 07:13:32 rogeeff -// licence update -// -// Revision 1.10 2003/06/09 09:25:24 rogeeff -// 1.30.beta1 -// -// Revision 1.9 2003/02/15 21:49:58 rogeeff -// borland warning fix -// -// Revision 1.8 2002/11/02 20:04:43 rogeeff -// release 1.29.0 merged into the main trank +// Revision 1.13 2003/12/01 00:42:38 rogeeff +// prerelease cleaning // // ***************************************************************************