diff --git a/build/.cvsignore b/build/.cvsignore
deleted file mode 100644
index ba077a40..00000000
--- a/build/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-bin
diff --git a/build/msvc71_proj/.cvsignore b/build/msvc71_proj/.cvsignore
deleted file mode 100644
index 3dd539da..00000000
--- a/build/msvc71_proj/.cvsignore
+++ /dev/null
@@ -1,6 +0,0 @@
-*.ncb
-*.suo
-debug
-release
-pattern.*
-*.rsp
diff --git a/example/unit_test_example_04.cpp b/example/unit_test_example_04.cpp
index 9e0e586a..43968e05 100644
--- a/example/unit_test_example_04.cpp
+++ b/example/unit_test_example_04.cpp
@@ -55,6 +55,20 @@ BOOST_AUTO_TEST_CASE( my_test4 )
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()
//____________________________________________________________________________//
diff --git a/test/Jamfile.v2 b/test/Jamfile.v2
index 11726f74..29898f13 100644
--- a/test/Jamfile.v2
+++ b/test/Jamfile.v2
@@ -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 @@ rule test-btl-lib ( test-rule : test-name : lib-name ? : pattern_file * : source
test-suite "basics_test"
:
- [ test-btl-lib run : class_properties_test : boost_unit_test_framework/static ]
+ [ test-btl-lib run : class_properties_test : boost_unit_test_framework/static ]
[ test-btl-lib run : basic_cstring_test : boost_unit_test_framework/static ]
;
@@ -36,29 +36,25 @@ test-suite "prg_exec_monitor_test"
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/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/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/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/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 ;
diff --git a/test/algorithms_test.cpp b/test/algorithms_test.cpp
index 4991704e..0db3a124 100755
--- a/test/algorithms_test.cpp
+++ b/test/algorithms_test.cpp
@@ -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)
diff --git a/test/auto-link-test/Jamfile b/test/auto-link-test/Jamfile
deleted file mode 100644
index 85757d17..00000000
--- a/test/auto-link-test/Jamfile
+++ /dev/null
@@ -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
- ../../../../stage/lib
- BOOST_LIB_DIAGNOSTIC=1
- : # program name
- algorithms_test
- ;
-
-
-run
- ../boost_check_equal_str.cpp
- : # args
- : # input files
- : # requirements
- ../../../../stage/lib
- BOOST_LIB_DIAGNOSTIC=1
- : # program name
- boost_check_equal_str
- ;
-
-
-run-fail
- ../prg_exec_fail1.cpp
- : # args
- : # input files
- : # requirements
- ../../../../stage/lib
- BOOST_LIB_DIAGNOSTIC=1
- : # program name
- prg_exec_fail1
- ;
-
diff --git a/test/basic_cstring_test.cpp b/test/basic_cstring_test.cpp
index a78d7e74..080271bd 100644
--- a/test/basic_cstring_test.cpp
+++ b/test/basic_cstring_test.cpp
@@ -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 @@ init_unit_test_suite( int /*argc*/, char* /*argv*/[] )
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
diff --git a/test/boost_check_equal_str.cpp b/test/boost_check_equal_str.cpp
index e161e29b..a5a55d91 100644
--- a/test/boost_check_equal_str.cpp
+++ b/test/boost_check_equal_str.cpp
@@ -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)
diff --git a/test/class_properties_test.cpp b/test/class_properties_test.cpp
index e340975e..f517df5f 100644
--- a/test/class_properties_test.cpp
+++ b/test/class_properties_test.cpp
@@ -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)
diff --git a/test/config_file_iterator_test.cpp b/test/config_file_iterator_test.cpp
index d278c8c4..641c1344 100755
--- a/test/config_file_iterator_test.cpp
+++ b/test/config_file_iterator_test.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test_ifdef )
//____________________________________________________________________________//
-// *****************************************************************************
-// 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
diff --git a/test/config_file_test.cpp b/test/config_file_test.cpp
index 27ec5a9f..18bedca9 100755
--- a/test/config_file_test.cpp
+++ b/test/config_file_test.cpp
@@ -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 @@ test_multipart_value()
#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
diff --git a/test/custom_exception_test.cpp b/test/custom_exception_test.cpp
index 0c62ff41..3e82f9fc 100644
--- a/test/custom_exception_test.cpp
+++ b/test/custom_exception_test.cpp
@@ -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 @@ init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) {
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/errors_handling_test.cpp b/test/errors_handling_test.cpp
index b644f506..3b70b198 100644
--- a/test/errors_handling_test.cpp
+++ b/test/errors_handling_test.cpp
@@ -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
diff --git a/test/fixed_mapping_test.cpp b/test/fixed_mapping_test.cpp
index 72f52609..7b22d2ca 100644
--- a/test/fixed_mapping_test.cpp
+++ b/test/fixed_mapping_test.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test_custom_compare )
//____________________________________________________________________________//
-// *****************************************************************************
-// 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
diff --git a/test/foreach_test.cpp b/test/foreach_test.cpp
index c8dc17a8..3268948e 100755
--- a/test/foreach_test.cpp
+++ b/test/foreach_test.cpp
@@ -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)
diff --git a/test/ifstream_line_iterator_test.cpp b/test/ifstream_line_iterator_test.cpp
index dccb31d3..dde87ba3 100644
--- a/test/ifstream_line_iterator_test.cpp
+++ b/test/ifstream_line_iterator_test.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test_custom_delimeter )
//____________________________________________________________________________//
-// *****************************************************************************
-// 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
diff --git a/test/minimal_test.cpp b/test/minimal_test.cpp
index 7bade9e0..dc431bb4 100644
--- a/test/minimal_test.cpp
+++ b/test/minimal_test.cpp
@@ -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 @@ test_main( int /*argc*/, char* /*argv*/[] )
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/online_test.cpp b/test/online_test.cpp
index 2c124e01..abc8e6a1 100644
--- a/test/online_test.cpp
+++ b/test/online_test.cpp
@@ -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
+#include
BOOST_AUTO_TEST_CASE( test )
{
@@ -22,16 +22,4 @@ BOOST_AUTO_TEST_CASE( test )
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/output_test_stream_test.cpp b/test/output_test_stream_test.cpp
index a71cc5b8..4ace5690 100644
--- a/test/output_test_stream_test.cpp
+++ b/test/output_test_stream_test.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test_match_pattern )
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/parameterized_test_test.cpp b/test/parameterized_test_test.cpp
index e8296405..8319fe0f 100644
--- a/test/parameterized_test_test.cpp
+++ b/test/parameterized_test_test.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test_case8 )
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/prg_exec_fail1.cpp b/test/prg_exec_fail1.cpp
index 871a47b2..b8766051 100644
--- a/test/prg_exec_fail1.cpp
+++ b/test/prg_exec_fail1.cpp
@@ -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 @@ cpp_main( int argc, char *[] ) // note the name
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/prg_exec_fail2.cpp b/test/prg_exec_fail2.cpp
index bfb7e2fe..d6befc6d 100644
--- a/test/prg_exec_fail2.cpp
+++ b/test/prg_exec_fail2.cpp
@@ -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 @@ int cpp_main( int, char *[] ) // note the name
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/prg_exec_fail3.cpp b/test/prg_exec_fail3.cpp
index 763a5fc5..6590290a 100644
--- a/test/prg_exec_fail3.cpp
+++ b/test/prg_exec_fail3.cpp
@@ -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 @@ int cpp_main( int, char *[] ) // note the name
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/prg_exec_fail4.cpp b/test/prg_exec_fail4.cpp
index 67d780c0..c89498c4 100644
--- a/test/prg_exec_fail4.cpp
+++ b/test/prg_exec_fail4.cpp
@@ -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 @@ int cpp_main( int, char* [] ) // note the name
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/result_report_test.cpp b/test/result_report_test.cpp
index dd873325..a0f8018a 100644
--- a/test/result_report_test.cpp
+++ b/test/result_report_test.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test_result_reports )
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/test_case_template_test.cpp b/test/test_case_template_test.cpp
index 84e8a501..fa95477b 100644
--- a/test/test_case_template_test.cpp
+++ b/test/test_case_template_test.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test2_one_to_three )
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/test_fp_comparisons.cpp b/test/test_fp_comparisons.cpp
index 63686202..2be99750 100644
--- a/test/test_fp_comparisons.cpp
+++ b/test/test_fp_comparisons.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test_close_at_tolerance )
//____________________________________________________________________________//
-// ***************************************************************************
-// 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
diff --git a/test/test_tools_test.cpp b/test/test_tools_test.cpp
index a6e30407..304aa818 100644
--- a/test/test_tools_test.cpp
+++ b/test/test_tools_test.cpp
@@ -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 @@ TEST_CASE( test_BOOST_IS_DEFINED )
// !! 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
diff --git a/test/token_iterator_test.cpp b/test/token_iterator_test.cpp
index 1d5dfb98..b7c9536e 100644
--- a/test/token_iterator_test.cpp
+++ b/test/token_iterator_test.cpp
@@ -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 @@ BOOST_AUTO_TEST_CASE( test_istream_token_iterator )
//____________________________________________________________________________//
-// *****************************************************************************
-// 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