diff --git a/build/Jamroot.jam b/build/Jamroot.jam index c08eab5..e1abe76 100644 --- a/build/Jamroot.jam +++ b/build/Jamroot.jam @@ -1,5 +1,11 @@ # Regression test status reporting tools build Jamfile +# Copyright Rene Rivera + +# Distributed under the Boost Software License, Version 1.0. +# See http://www.boost.org/LICENSE_1_0.txt + + if [ glob ../../../boost-build.jam ] { use-project /boost : ../../.. ; diff --git a/doc/index.html b/doc/index.html index deeb68d..2272130 100644 --- a/doc/index.html +++ b/doc/index.html @@ -33,7 +33,7 @@
  • compiler_status.cpp - Generates HTML status tables from test_log.xml and other files.
  • -
  • Jamfile.v2 - Builds process_jam_log +
  • Jamroot.jam - Builds process_jam_log and compiler_status executables.
  • Library Status - Runs test programs diff --git a/src/detail/tiny_xml_test.txt b/src/detail/tiny_xml_test.txt index 25bc531..b248cbf 100644 --- a/src/detail/tiny_xml_test.txt +++ b/src/detail/tiny_xml_test.txt @@ -1,4 +1,9 @@ + +// (C) Copyright Beman Dawes 2002. 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) + It's Howdy Doody time! diff --git a/src/library_test.bat b/src/library_test.bat index 0cc726d..0f33840 100644 --- a/src/library_test.bat +++ b/src/library_test.bat @@ -1,4 +1,10 @@ @echo off + +rem Copyright Robert Ramey 2007 + +rem Distributed under the Boost Software License, Version 1.0. +rem See http://www.boost.org/LICENSE_1_0.txt + if not "%1" == "" goto bjam echo Usage: %0 "" echo where typical bjam arguements are: diff --git a/src/library_test.sh b/src/library_test.sh index 31fb2cc..0164d0d 100755 --- a/src/library_test.sh +++ b/src/library_test.sh @@ -1,3 +1,8 @@ +# Copyright Robert Ramey 2007 + +# Distributed under the Boost Software License, Version 1.0. +# See http://www.boost.org/LICENSE_1_0.txt + if test $# -eq 0 then echo "Usage: $0 " diff --git a/src/run_tests.sh b/src/run_tests.sh index 04eaf83..12437bf 100644 --- a/src/run_tests.sh +++ b/src/run_tests.sh @@ -1,5 +1,11 @@ #!/bin/sh # +# Copyright John Maddock +# Copyright Rene Rivera +# +# Distributed under the Boost Software License, Version 1.0. +# See http://www.boost.org/LICENSE_1_0.txt +# # shell script for running the boost regression test suite and generating # a html table of results. diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 0c2ba68..f19b6ac 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -1,21 +1,28 @@ +# Copyright Misha Bergal 2006 +# +# Distributed under the Boost Software License, Version 1.0. +# See http://www.boost.org/LICENSE_1_0.txt + test-suite testlib : - [ compile-fail compile-fail~fail.cpp ] - [ compile-fail compile-fail~pass.cpp ] - [ compile compile~fail.cpp ] - [ compile compile~pass.cpp ] - [ compile compile~warn.cpp ] - [ link link~fail.cpp ] - [ link link~pass.cpp ] - [ link-fail link-fail~fail.cpp ] - [ link-fail link-fail~pass.cpp ] - [ run-fail run-fail~compile-fail.cpp ] - [ run-fail run-fail~fail-warn.cpp ] - [ run-fail run-fail~fail.cpp ] - [ run-fail run-fail~pass.cpp ] - [ run run~fail.cpp ] - [ run run~note.cpp ] - [ run run~pass.cpp ] - [ run run~warn-note.cpp ] - [ run run~warn.cpp ] + [ compile-fail compile-fail_fail.cpp ] + [ compile-fail compile-fail_pass.cpp ] + [ compile compile_fail.cpp ] + [ compile compile_pass.cpp ] + [ compile compile_warn.cpp ] +# The link test .cpp files were apparently never committed to the repository, +# and were lost. +# [ link link_fail.cpp ] +# [ link link_pass.cpp ] +# [ link-fail link-fail_fail.cpp ] +# [ link-fail link-fail_pass.cpp ] + [ run-fail run-fail_compile-fail.cpp ] + [ run-fail run-fail_fail-warn.cpp ] + [ run-fail run-fail_fail.cpp ] + [ run-fail run-fail_pass.cpp ] + [ run run_fail.cpp ] + [ run run_note.cpp ] + [ run run_pass.cpp ] + [ run run_warn-note.cpp ] + [ run run_warn.cpp ] ; \ No newline at end of file diff --git a/test/compile-fail~fail.cpp b/test/compile-fail_fail.cpp similarity index 100% rename from test/compile-fail~fail.cpp rename to test/compile-fail_fail.cpp diff --git a/test/compile-fail~pass.cpp b/test/compile-fail_pass.cpp similarity index 100% rename from test/compile-fail~pass.cpp rename to test/compile-fail_pass.cpp diff --git a/test/compile~fail.cpp b/test/compile_fail.cpp similarity index 100% rename from test/compile~fail.cpp rename to test/compile_fail.cpp diff --git a/test/compile~pass.cpp b/test/compile_pass.cpp similarity index 100% rename from test/compile~pass.cpp rename to test/compile_pass.cpp diff --git a/test/compile~warn.cpp b/test/compile_warn.cpp similarity index 100% rename from test/compile~warn.cpp rename to test/compile_warn.cpp diff --git a/test/run-fail~compile-fail.cpp b/test/run-fail_compile-fail.cpp similarity index 100% rename from test/run-fail~compile-fail.cpp rename to test/run-fail_compile-fail.cpp diff --git a/test/run-fail~fail-warn.cpp b/test/run-fail_fail-warn.cpp similarity index 100% rename from test/run-fail~fail-warn.cpp rename to test/run-fail_fail-warn.cpp diff --git a/test/run-fail~fail.cpp b/test/run-fail_fail.cpp similarity index 100% rename from test/run-fail~fail.cpp rename to test/run-fail_fail.cpp diff --git a/test/run-fail~pass.cpp b/test/run-fail_pass.cpp similarity index 100% rename from test/run-fail~pass.cpp rename to test/run-fail_pass.cpp diff --git a/test/run-fail~warn.cpp b/test/run-fail_warn.cpp similarity index 100% rename from test/run-fail~warn.cpp rename to test/run-fail_warn.cpp diff --git a/test/run~compile-fail.cpp b/test/run_compile-fail.cpp similarity index 100% rename from test/run~compile-fail.cpp rename to test/run_compile-fail.cpp diff --git a/test/run~fail-note.cpp b/test/run_fail-note.cpp similarity index 100% rename from test/run~fail-note.cpp rename to test/run_fail-note.cpp diff --git a/test/run~fail-warn.cpp b/test/run_fail-warn.cpp similarity index 100% rename from test/run~fail-warn.cpp rename to test/run_fail-warn.cpp diff --git a/test/run~fail.cpp b/test/run_fail.cpp similarity index 100% rename from test/run~fail.cpp rename to test/run_fail.cpp diff --git a/test/run~note.cpp b/test/run_note.cpp similarity index 100% rename from test/run~note.cpp rename to test/run_note.cpp diff --git a/test/run~pass.cpp b/test/run_pass.cpp similarity index 100% rename from test/run~pass.cpp rename to test/run_pass.cpp diff --git a/test/run~warn-note.cpp b/test/run_warn-note.cpp similarity index 100% rename from test/run~warn-note.cpp rename to test/run_warn-note.cpp diff --git a/test/run~warn.cpp b/test/run_warn.cpp similarity index 100% rename from test/run~warn.cpp rename to test/run_warn.cpp diff --git a/test/test.bat b/test/test.bat index 200c716..ce32fb7 100644 --- a/test/test.bat +++ b/test/test.bat @@ -1,4 +1,9 @@ -set TEST_LOCATE_ROOT=d:\temp +rem Copyright Beman Dawes 2005 + +rem Distributed under the Boost Software License, Version 1.0. +rem See http://www.boost.org/LICENSE_1_0.txt + +set TEST_LOCATE_ROOT=%TEMP% echo Begin test processing... bjam --dump-tests "-sALL_LOCATE_TARGET=%TEST_LOCATE_ROOT%" %* >bjam.log 2>&1