diff --git a/include/boost/test/execution_monitor.hpp b/include/boost/test/execution_monitor.hpp index 5ccdfee1..d5038a78 100644 --- a/include/boost/test/execution_monitor.hpp +++ b/include/boost/test/execution_monitor.hpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 2001. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// execution monitor header - traps and reports errors and exceptions -// See http://www.boost.org for most recent version including documentation. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 2001. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -126,6 +125,9 @@ public: // Revision History : // // $Log$ +// 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 // diff --git a/src/cpp_main.cpp b/src/cpp_main.cpp index 8d0854b2..ea305e8e 100644 --- a/src/cpp_main.cpp +++ b/src/cpp_main.cpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 1995-2001. -// Permission to copy, use, modify, sell and distribute this software is -// granted provided this copyright notice appears in all copies. This software -// is provided "as is" without express or implied warranty, and with no -// claim as to its suitability for any purpose. +// main function implementation for Program Executon Monitor -// See http://www.boost.org for updates, documentation, and revision history. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 1995-2001. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -100,6 +99,9 @@ int main( int argc, char* argv[] ) // Revision History : // // $Log$ +// 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. // diff --git a/src/execution_monitor.cpp b/src/execution_monitor.cpp index 408ebcec..1b2c16da 100644 --- a/src/execution_monitor.cpp +++ b/src/execution_monitor.cpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes and Ullrich Koethe 1995-2001. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// execution monitor implementation - traps and reports errors and exceptions -// See http://www.boost.org for updates, documentation, and revision history. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes and Ullrich Koethe 1995-2001. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -574,6 +573,9 @@ static void report_error( execution_exception::error_code ec, c_string_literal m // Revision History : // // $Log$ +// 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 // diff --git a/src/test_main.cpp b/src/test_main.cpp index 945bcfd3..ae0f2a5a 100644 --- a/src/test_main.cpp +++ b/src/test_main.cpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 1995-2001. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// implements main function for Test Execution Monitor -// See http://www.boost.org for updates, documentation, and revision history. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 1995-2001. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -99,6 +98,9 @@ int main( int argc, char* argv[] ) { // Revision History : // // $Log$ +// 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 // diff --git a/test/errors_handling_test.cpp b/test/errors_handling_test.cpp index d027064c..8ab7c01d 100644 --- a/test/errors_handling_test.cpp +++ b/test/errors_handling_test.cpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 2001. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// unit test framework error handling test -// See http://www.boost.org for updates, documentation, and revision history. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 2001. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -247,6 +246,9 @@ test_main( int argc, char * argv[] ) // Revision History : // // $Log$ +// 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 // diff --git a/test/prg_exec_fail1.cpp b/test/prg_exec_fail1.cpp index 9b5e0eca..4280112d 100644 --- a/test/prg_exec_fail1.cpp +++ b/test/prg_exec_fail1.cpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 2001. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// Test error by throwing C-style string exception -// See http://www.boost.org for most recent version including documentation. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 2001. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -30,6 +29,9 @@ cpp_main( int argc, char *[] ) // note the name // Revision History : // // $Log$ +// 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 // diff --git a/test/prg_exec_fail2.cpp b/test/prg_exec_fail2.cpp index ed8fdfa2..8590cd16 100644 --- a/test/prg_exec_fail2.cpp +++ b/test/prg_exec_fail2.cpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 2001. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// Divide by zero test -// See http://www.boost.org for most recent version including documentation. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 2001. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -27,6 +26,9 @@ int cpp_main( int, char *[] ) // note the name // Revision History : // // $Log$ +// 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 // diff --git a/test/test_exec_fail1.cpp b/test/test_exec_fail1.cpp index 9b81da7f..5e03de37 100644 --- a/test/test_exec_fail1.cpp +++ b/test/test_exec_fail1.cpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 2000. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// test failure reported via non-zero return value -// See http://www.boost.org for most recent version including documentation. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 2000. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -29,6 +28,9 @@ int test_main( int, char* [] ) // note the name // Revision History : // // $Log$ +// 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 // diff --git a/test/test_exec_fail2.cpp b/test/test_exec_fail2.cpp index 7582c523..01aa84d7 100644 --- a/test/test_exec_fail2.cpp +++ b/test/test_exec_fail2.cpp @@ -1,17 +1,16 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 2000. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// test failures reported by different Test Tools -// See http://www.boost.org for most recent version including documentation. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 2000. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // // Version : $Revision$ // -// Description : test failures reported by differen Test Tools. +// Description : test failures reported by different Test Tools. // Should fail during run. // *************************************************************************** @@ -39,6 +38,9 @@ int test_main( int, char *[] ) // note the name // Revision History : // // $Log$ +// 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 // diff --git a/test/test_exec_fail3.cpp b/test/test_exec_fail3.cpp index 1882b9f4..879a64b8 100644 --- a/test/test_exec_fail3.cpp +++ b/test/test_exec_fail3.cpp @@ -1,11 +1,10 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 2000. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// BOOST_CHECK test -// See http://www.boost.org for most recent version including documentation. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 2000. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // @@ -33,6 +32,9 @@ int test_main( int, char*[] ) // note the name // Revision History : // // $Log$ +// 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 // diff --git a/test/test_exec_fail4.cpp b/test/test_exec_fail4.cpp index f726c948..3b73d1f8 100644 --- a/test/test_exec_fail4.cpp +++ b/test/test_exec_fail4.cpp @@ -1,17 +1,16 @@ -// (C) Copyright Gennadiy Rozental 2001-2003. -// (C) Copyright Beman Dawes 2001. -// Permission to copy, use, modify, sell and distribute this software -// is granted provided this copyright notice appears in all copies. -// This software is provided "as is" without express or implied warranty, -// and with no claim as to its suitability for any purpose. +// test error by throwing C-style string exception -// See http://www.boost.org for most recent version including documentation. +// Copyright Gennadiy Rozental 2001-2003. +// Copyright Beman Dawes 2001. +// See accompanying license for terms and conditions of use. + +// See http://www.boost.org/libs/test for documentation. // // File : $RCSfile$ // // Version : $Revision$ // -// Description : test failures reported by thgrowing the exception. +// Description : test failures reported by throwing the exception. // Should fail during run. // *************************************************************************** @@ -34,6 +33,9 @@ int test_main( int argc, char* [] ) // note the name // Revision History : // // $Log$ +// 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 //