Boost logo

Boost-Commit :

From: gennadiy.rozental_at_[hidden]
Date: 2007-10-23 01:25:44


Author: rogeeff
Date: 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
New Revision: 40338
URL: http://svn.boost.org/trac/boost/changeset/40338

Log:
update to tests and example
Removed:
   trunk/libs/test/build/.cvsignore
   trunk/libs/test/build/msvc71_proj/.cvsignore
   trunk/libs/test/test/auto-link-test/Jamfile
Text files modified:
   trunk/libs/test/example/unit_test_example_04.cpp | 14 +++++++++
   trunk/libs/test/test/Jamfile.v2 | 34 ++++++++++-------------
   trunk/libs/test/test/algorithms_test.cpp | 2
   trunk/libs/test/test/basic_cstring_test.cpp | 58 ---------------------------------------
   trunk/libs/test/test/boost_check_equal_str.cpp | 2
   trunk/libs/test/test/class_properties_test.cpp | 2
   trunk/libs/test/test/config_file_iterator_test.cpp | 20 -------------
   trunk/libs/test/test/config_file_test.cpp | 23 ---------------
   trunk/libs/test/test/custom_exception_test.cpp | 32 ---------------------
   trunk/libs/test/test/errors_handling_test.cpp | 2
   trunk/libs/test/test/fixed_mapping_test.cpp | 31 --------------------
   trunk/libs/test/test/foreach_test.cpp | 2
   trunk/libs/test/test/ifstream_line_iterator_test.cpp | 23 ---------------
   trunk/libs/test/test/minimal_test.cpp | 21 -------------
   trunk/libs/test/test/online_test.cpp | 16 +---------
   trunk/libs/test/test/output_test_stream_test.cpp | 14 --------
   trunk/libs/test/test/parameterized_test_test.cpp | 23 ---------------
   trunk/libs/test/test/prg_exec_fail1.cpp | 27 -----------------
   trunk/libs/test/test/prg_exec_fail2.cpp | 24 ---------------
   trunk/libs/test/test/prg_exec_fail3.cpp | 21 -------------
   trunk/libs/test/test/prg_exec_fail4.cpp | 21 -------------
   trunk/libs/test/test/result_report_test.cpp | 26 -----------------
   trunk/libs/test/test/test_case_template_test.cpp | 23 ---------------
   trunk/libs/test/test/test_fp_comparisons.cpp | 20 -------------
   trunk/libs/test/test/test_tools_test.cpp | 35 -----------------------
   trunk/libs/test/test/token_iterator_test.cpp | 27 -----------------
   26 files changed, 54 insertions(+), 489 deletions(-)

Deleted: trunk/libs/test/build/.cvsignore
==============================================================================
--- trunk/libs/test/build/.cvsignore 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
+++ (empty file)
@@ -1 +0,0 @@
-bin

Deleted: trunk/libs/test/build/msvc71_proj/.cvsignore
==============================================================================
--- trunk/libs/test/build/msvc71_proj/.cvsignore 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
+++ (empty file)
@@ -1,6 +0,0 @@
-*.ncb
-*.suo
-debug
-release
-pattern.*
-*.rsp

Modified: trunk/libs/test/example/unit_test_example_04.cpp
==============================================================================
--- trunk/libs/test/example/unit_test_example_04.cpp (original)
+++ trunk/libs/test/example/unit_test_example_04.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -55,6 +55,20 @@
     BOOST_CHECK_EQUAL( i, 1 );
 }
 
+BOOST_AUTO_TEST_SUITE( internal_suite )
+
+// this test case belongs to my_suite2:internal_suite test suite
+
+BOOST_AUTO_TEST_CASE( my_test5 )
+{
+ int i = 0;
+
+ BOOST_CHECK_EQUAL( i, 1 );
+}
+
+BOOST_AUTO_TEST_SUITE_END()
+
+
 BOOST_AUTO_TEST_SUITE_END()
 
 //____________________________________________________________________________//

Modified: trunk/libs/test/test/Jamfile.v2
==============================================================================
--- trunk/libs/test/test/Jamfile.v2 (original)
+++ trunk/libs/test/test/Jamfile.v2 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-# (C) Copyright Gennadiy Rozental 2001-2006.
+# (C) Copyright Gennadiy Rozental 2001-2007.
 # Use, modification, and distribution are subject to the
 # Boost Software License, Version 1.0. (See accompanying file
 # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -23,7 +23,7 @@
 
 test-suite "basics_test"
         :
- [ test-btl-lib run : class_properties_test : boost_unit_test_framework/<link>static ]
+ [ test-btl-lib run : class_properties_test : boost_unit_test_framework/<link>static ]
           [ test-btl-lib run : basic_cstring_test : boost_unit_test_framework/<link>static ]
         ;
 
@@ -36,29 +36,25 @@
 
 test-suite "unit_test_framework_test"
         :
-
-# errors_handling_test has been commented out because it is in effect a Windows
-# only test and no one has volunteered to get it working on other O/S's.
- [ test-btl-lib run : errors_handling_test : boost_unit_test_framework : test_files/errors_handling_test.pattern ]
+ [ test-btl-lib run : errors_handling_test : boost_unit_test_framework : test_files/errors_handling_test.pattern ]
           [ test-btl-lib run : online_test ]
           [ test-btl-lib run-fail : minimal_test ]
           [ test-btl-lib run : foreach_test ]
- [ test-btl-lib run : output_test_stream_test : boost_unit_test_framework ]
- [ test-btl-lib run : result_report_test : boost_unit_test_framework : test_files/result_report_test.pattern ]
- [ test-btl-lib run : parameterized_test_test : boost_unit_test_framework ]
- [ test-btl-lib run : test_fp_comparisons : boost_unit_test_framework ]
- [ test-btl-lib run : test_tools_test : boost_unit_test_framework : test_files/test_tools_test.pattern ]
- [ test-btl-lib run : test_case_template_test : boost_unit_test_framework ]
- [ test-btl-lib run : custom_exception_test : boost_unit_test_framework/<link>static ]
- [ test-btl-lib run : fixed_mapping_test : boost_unit_test_framework ]
+ [ test-btl-lib run : output_test_stream_test : boost_unit_test_framework ]
+ [ test-btl-lib run : result_report_test : boost_unit_test_framework : test_files/result_report_test.pattern ]
+ [ test-btl-lib run : parameterized_test_test : boost_unit_test_framework ]
+ [ test-btl-lib run : test_fp_comparisons : boost_unit_test_framework ]
+ [ test-btl-lib run : test_tools_test : boost_unit_test_framework : test_files/test_tools_test.pattern ]
+ [ test-btl-lib run : test_case_template_test : boost_unit_test_framework ]
+ [ test-btl-lib run : custom_exception_test : boost_unit_test_framework/<link>static ]
+ [ test-btl-lib run : fixed_mapping_test : boost_unit_test_framework ]
           [ test-btl-lib run : ifstream_line_iterator_test : boost_unit_test_framework : test_files/ifstream_line_iterator.tst1 test_files/ifstream_line_iterator.tst2 ]
- [ test-btl-lib run : algorithms_test : boost_unit_test_framework/<link>static ]
- [ test-btl-lib run : token_iterator_test : boost_unit_test_framework ]
- [ test-btl-lib run : boost_check_equal_str : boost_unit_test_framework ]
- [ test-btl-lib run : test_tree_management_test : boost_unit_test_framework ]
+ [ test-btl-lib run : algorithms_test : boost_unit_test_framework/<link>static ]
+ [ test-btl-lib run : token_iterator_test : boost_unit_test_framework ]
+ [ test-btl-lib run : boost_check_equal_str : boost_unit_test_framework ]
+ [ test-btl-lib run : test_tree_management_test : boost_unit_test_framework ]
             ;
 
-
 # A target that runs all the tests
 alias test : basics_test prg_exec_monitor_test unit_test_framework_test ;
   

Modified: trunk/libs/test/test/algorithms_test.cpp
==============================================================================
--- trunk/libs/test/test/algorithms_test.cpp (original)
+++ trunk/libs/test/test/algorithms_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2003-2006.
+// (C) Copyright Gennadiy Rozental 2003-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)

Deleted: trunk/libs/test/test/auto-link-test/Jamfile
==============================================================================
--- trunk/libs/test/test/auto-link-test/Jamfile 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
+++ (empty file)
@@ -1,46 +0,0 @@
-# (C) Copyright Gennadiy Rozental 2001-2006.
-# Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt)
-#
-# See http://www.boost.org/libs/test for the library home page.
-
-subproject libs/test/test/auto-link-test ;
-
-# bring in the rules for testing
-import testing ;
-
-run
- ../algorithms_test.cpp
- : # args
- : # input files
- : # requirements
- <library-path>../../../../stage/lib
- <define>BOOST_LIB_DIAGNOSTIC=1
- : # program name
- algorithms_test
- ;
-
-
-run
- ../boost_check_equal_str.cpp
- : # args
- : # input files
- : # requirements
- <library-path>../../../../stage/lib
- <define>BOOST_LIB_DIAGNOSTIC=1
- : # program name
- boost_check_equal_str
- ;
-
-
-run-fail
- ../prg_exec_fail1.cpp
- : # args
- : # input files
- : # requirements
- <library-path>../../../../stage/lib
- <define>BOOST_LIB_DIAGNOSTIC=1
- : # program name
- prg_exec_fail1
- ;
-

Modified: trunk/libs/test/test/basic_cstring_test.cpp
==============================================================================
--- trunk/libs/test/test/basic_cstring_test.cpp (original)
+++ trunk/libs/test/test/basic_cstring_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -465,60 +465,4 @@
     return test;
 }
 
-// *****************************************************************************
-// History :
-//
-// $Log$
-// Revision 1.15 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.14 2005/08/12 14:15:13 schoepflin
-// Fixed dependent name lookup issue.
-//
-// Revision 1.13 2005/05/13 06:00:14 rogeeff
-// *** empty log message ***
-//
-// Revision 1.12 2005/05/11 05:07:56 rogeeff
-// licence update
-//
-// Revision 1.11 2005/04/17 15:49:17 rogeeff
-// *** empty log message ***
-//
-// Revision 1.10 2005/02/20 08:28:34 rogeeff
-// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
-//
-// Revision 1.9 2005/01/30 03:35:55 rogeeff
-// no message
-//
-// Revision 1.8 2005/11/28 04:28:56 agurtovoy
-// merge RC_1_32_0 fixes
-//
-// Revision 1.7.2.1 2005/10/30 11:33:38 agurtovoy
-// MSVC/Borland fixes
-//
-// Revision 1.7 2005/10/01 10:55:43 rogeeff
-// some test errors workarrounds
-//
-// Revision 1.6 2005/07/19 12:07:26 rogeeff
-// *** empty log message ***
-//
-// Revision 1.5 2005/06/07 07:34:23 rogeeff
-// detail namespace renamed
-//
-// Revision 1.4 2005/06/05 11:04:17 rogeeff
-// no message
-//
-// Revision 1.3 2005/05/27 06:30:48 rogeeff
-// no message
-//
-// Revision 1.2 2005/05/21 06:26:10 rogeeff
-// licence update
-//
-// Revision 1.1 2005/05/11 11:05:46 rogeeff
-// basic_cstring introduced and used everywhere
-// class properties reworked
-// namespace names shortened
-//
-// *****************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/boost_check_equal_str.cpp
==============================================================================
--- trunk/libs/test/test/boost_check_equal_str.cpp (original)
+++ trunk/libs/test/test/boost_check_equal_str.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)

Modified: trunk/libs/test/test/class_properties_test.cpp
==============================================================================
--- trunk/libs/test/test/class_properties_test.cpp (original)
+++ trunk/libs/test/test/class_properties_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2003-2006.
+// (C) Copyright Gennadiy Rozental 2003-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)

Modified: trunk/libs/test/test/config_file_iterator_test.cpp
==============================================================================
--- trunk/libs/test/test/config_file_iterator_test.cpp (original)
+++ trunk/libs/test/test/config_file_iterator_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -311,22 +311,4 @@
 
 //____________________________________________________________________________//
 
-// *****************************************************************************
-// History :
-//
-// $Log$
-// Revision 1.4 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.3 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.2 2005/05/11 05:07:56 rogeeff
-// licence update
-//
-// Revision 1.1 2005/04/12 06:19:23 rogeeff
-// runtime.param tests added
-//
-// *****************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/config_file_test.cpp
==============================================================================
--- trunk/libs/test/test/config_file_test.cpp (original)
+++ trunk/libs/test/test/config_file_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -254,25 +254,4 @@
 
 #endif
 
-// *****************************************************************************
-// History :
-//
-// $Log$
-// Revision 1.5 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.4 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.3 2005/05/11 05:07:56 rogeeff
-// licence update
-//
-// Revision 1.2 2005/04/17 15:49:17 rogeeff
-// *** empty log message ***
-//
-// Revision 1.1 2005/04/12 06:19:23 rogeeff
-// runtime.param tests added
-//
-// *****************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/custom_exception_test.cpp
==============================================================================
--- trunk/libs/test/test/custom_exception_test.cpp (original)
+++ trunk/libs/test/test/custom_exception_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2003-2006.
+// (C) Copyright Gennadiy Rozental 2003-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -74,34 +74,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.9 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.8 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.7 2005/05/11 05:07:56 rogeeff
-// licence update
-//
-// Revision 1.6 2005/02/20 08:28:34 rogeeff
-// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
-//
-// Revision 1.5 2005/05/21 06:26:10 rogeeff
-// licence update
-//
-// Revision 1.4 2005/05/11 11:05:05 rogeeff
-// basic_cstring introduced and used everywhere
-// class properties reworked
-// namespace names shortened
-//
-// Revision 1.3 2003/12/01 00:42:37 rogeeff
-// prerelease cleaning
-//
-
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/errors_handling_test.cpp
==============================================================================
--- trunk/libs/test/test/errors_handling_test.cpp (original)
+++ trunk/libs/test/test/errors_handling_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // (C) Copyright Beman Dawes 2001.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at

Modified: trunk/libs/test/test/fixed_mapping_test.cpp
==============================================================================
--- trunk/libs/test/test/fixed_mapping_test.cpp (original)
+++ trunk/libs/test/test/fixed_mapping_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -78,33 +78,4 @@
 
 //____________________________________________________________________________//
 
-// *****************************************************************************
-// History :
-//
-// $Log$
-// Revision 1.9 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.8 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.7 2005/05/11 05:07:56 rogeeff
-// licence update
-//
-// Revision 1.6 2005/02/20 08:28:34 rogeeff
-// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
-//
-// Revision 1.5 2005/01/30 03:35:55 rogeeff
-// no message
-//
-// Revision 1.3 2005/01/18 08:30:09 rogeeff
-// unit_test_log rework:
-// eliminated need for ::instance()
-// eliminated need for << end and ...END macro
-// straitend interface between log and formatters
-// change compiler like formatter name
-// minimized unit_test_log interface and reworked to use explicit calls
-//
-// *****************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/foreach_test.cpp
==============================================================================
--- trunk/libs/test/test/foreach_test.cpp (original)
+++ trunk/libs/test/test/foreach_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)

Modified: trunk/libs/test/test/ifstream_line_iterator_test.cpp
==============================================================================
--- trunk/libs/test/test/ifstream_line_iterator_test.cpp (original)
+++ trunk/libs/test/test/ifstream_line_iterator_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -72,25 +72,4 @@
 
 //____________________________________________________________________________//
 
-// *****************************************************************************
-// History :
-//
-// $Log$
-// Revision 1.9 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.8 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.7 2005/06/11 07:20:45 rogeeff
-// portability fix
-//
-// Revision 1.6 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.5 2005/03/22 07:14:44 rogeeff
-// no message
-//
-// *****************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/minimal_test.cpp
==============================================================================
--- trunk/libs/test/test/minimal_test.cpp (original)
+++ trunk/libs/test/test/minimal_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -72,23 +72,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.11 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.10 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.9 2005/05/21 06:26:10 rogeeff
-// licence update
-//
-// Revision 1.8 2003/12/01 00:42:37 rogeeff
-// prerelease cleaning
-//
-
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/online_test.cpp
==============================================================================
--- trunk/libs/test/test/online_test.cpp (original)
+++ trunk/libs/test/test/online_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -14,7 +14,7 @@
 
 // Boost.Test
 #define BOOST_TEST_MAIN
-#include <boost/test/included/unit_test_framework.hpp>
+#include <boost/test/included/unit_test.hpp>
 
 BOOST_AUTO_TEST_CASE( test )
 {
@@ -22,16 +22,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.16 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.15 2006/02/01 08:00:15 rogeeff
-// *** empty log message ***
-//
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/output_test_stream_test.cpp
==============================================================================
--- trunk/libs/test/test/output_test_stream_test.cpp (original)
+++ trunk/libs/test/test/output_test_stream_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -190,16 +190,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.22 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.21 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/parameterized_test_test.cpp
==============================================================================
--- trunk/libs/test/test/parameterized_test_test.cpp (original)
+++ trunk/libs/test/test/parameterized_test_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2002-2006.
+// (C) Copyright Gennadiy Rozental 2002-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -207,25 +207,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.23 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.22 2006/02/01 08:00:15 rogeeff
-// *** empty log message ***
-//
-// Revision 1.21 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.20 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.19 2005/02/20 08:28:34 rogeeff
-// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
-//
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/prg_exec_fail1.cpp
==============================================================================
--- trunk/libs/test/test/prg_exec_fail1.cpp (original)
+++ trunk/libs/test/test/prg_exec_fail1.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // (C) Copyright Beman Dawes 2001.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
@@ -39,29 +39,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.16 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.15 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.14 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.13 2005/05/21 06:26:10 rogeeff
-// licence update
-//
-// Revision 1.12 2005/01/07 22:06:44 beman_dawes
-// Fix Metrowerks link failures for some compiler configurations. See comment in code. (fix from Ed Swartz of Metrowerks)
-//
-// Revision 1.11 2003/12/01 00:42:38 rogeeff
-// prerelease cleaning
-//
-
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/prg_exec_fail2.cpp
==============================================================================
--- trunk/libs/test/test/prg_exec_fail2.cpp (original)
+++ trunk/libs/test/test/prg_exec_fail2.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // (C) Copyright Beman Dawes 2001.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
@@ -35,26 +35,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.15 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.14 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.13 2005/05/21 06:26:10 rogeeff
-// licence update
-//
-// Revision 1.12 2005/01/07 22:06:44 beman_dawes
-// Fix Metrowerks link failures for some compiler configurations. See comment in code. (fix from Ed Swartz of Metrowerks)
-//
-// Revision 1.11 2003/12/01 00:42:38 rogeeff
-// prerelease cleaning
-//
-
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/prg_exec_fail3.cpp
==============================================================================
--- trunk/libs/test/test/prg_exec_fail3.cpp (original)
+++ trunk/libs/test/test/prg_exec_fail3.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2002-2006.
+// (C) Copyright Gennadiy Rozental 2002-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -26,23 +26,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.8 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.7 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.6 2005/05/21 06:26:10 rogeeff
-// licence update
-//
-// Revision 1.5 2003/12/01 00:42:38 rogeeff
-// prerelease cleaning
-//
-
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/prg_exec_fail4.cpp
==============================================================================
--- trunk/libs/test/test/prg_exec_fail4.cpp (original)
+++ trunk/libs/test/test/prg_exec_fail4.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2003-2006.
+// (C) Copyright Gennadiy Rozental 2003-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -20,23 +20,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.7 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.6 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.5 2005/05/21 06:26:10 rogeeff
-// licence update
-//
-// Revision 1.4 2003/12/01 00:42:38 rogeeff
-// prerelease cleaning
-//
-
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/result_report_test.cpp
==============================================================================
--- trunk/libs/test/test/result_report_test.cpp (original)
+++ trunk/libs/test/test/result_report_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -164,28 +164,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.25 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.24 2006/02/01 08:00:15 rogeeff
-// *** empty log message ***
-//
-// Revision 1.23 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.22 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.21 2005/02/21 10:29:04 rogeeff
-// no message
-//
-// Revision 1.20 2005/02/20 08:28:34 rogeeff
-// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
-//
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/test_case_template_test.cpp
==============================================================================
--- trunk/libs/test/test/test_case_template_test.cpp (original)
+++ trunk/libs/test/test/test_case_template_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2003-2006.
+// (C) Copyright Gennadiy Rozental 2003-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -142,25 +142,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.17 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.16 2006/01/29 20:22:59 rogeeff
-// *** empty log message ***
-//
-// Revision 1.15 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.14 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.13 2005/02/20 08:28:34 rogeeff
-// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
-//
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/test_fp_comparisons.cpp
==============================================================================
--- trunk/libs/test/test/test_fp_comparisons.cpp (original)
+++ trunk/libs/test/test/test_fp_comparisons.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -167,22 +167,4 @@
 
 //____________________________________________________________________________//
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.24 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.23 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.22 2005/05/29 08:54:04 rogeeff
-// remove format testing
-//
-// Revision 1.17 2005/02/20 08:28:34 rogeeff
-// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
-//
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/test_tools_test.cpp
==============================================================================
--- trunk/libs/test/test/test_tools_test.cpp (original)
+++ trunk/libs/test/test/test_tools_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -554,37 +554,4 @@
 
 // !! CHECK_SMALL
 
-// ***************************************************************************
-// Revision History :
-//
-// $Log$
-// Revision 1.47 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.46 2006/01/28 07:05:27 rogeeff
-// mark unreachable intentionally statements
-//
-// Revision 1.45 2006/01/21 07:09:25 rogeeff
-// *** empty log message ***
-//
-// Revision 1.44 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.43 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.42 2005/04/17 15:49:17 rogeeff
-// *** empty log message ***
-//
-// Revision 1.41 2005/03/22 07:14:44 rogeeff
-// no message
-//
-// Revision 1.40 2005/02/21 10:29:06 rogeeff
-// no message
-//
-// Revision 1.39 2005/02/20 08:28:34 rogeeff
-// This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
-//
-// ***************************************************************************
-
 // EOF

Modified: trunk/libs/test/test/token_iterator_test.cpp
==============================================================================
--- trunk/libs/test/test/token_iterator_test.cpp (original)
+++ trunk/libs/test/test/token_iterator_test.cpp 2007-10-23 01:25:42 EDT (Tue, 23 Oct 2007)
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2001-2006.
+// (C) Copyright Gennadiy Rozental 2001-2007.
 // Distributed under the Boost Software License, Version 1.0.
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
@@ -187,29 +187,4 @@
 
 //____________________________________________________________________________//
 
-// *****************************************************************************
-// History :
-//
-// $Log$
-// Revision 1.14 2006/03/19 11:49:04 rogeeff
-// *** empty log message ***
-//
-// Revision 1.13 2005/12/14 06:01:02 rogeeff
-// *** empty log message ***
-//
-// Revision 1.12 2005/06/11 19:20:58 rogeeff
-// *** empty log message ***
-//
-// Revision 1.11 2005/06/05 18:10:59 grafik
-// named_param.hpp; Work around CW not handling operator, using declaration, by using a real operator,().
-// token_iterator_test.cpp; Work around CW-8 confused with array initialization.
-//
-// Revision 1.10 2005/05/11 05:07:57 rogeeff
-// licence update
-//
-// Revision 1.9 2005/04/13 05:09:16 rogeeff
-// *** empty log message ***
-//
-// *****************************************************************************
-
 // EOF


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk