Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56675 - in trunk/tools/regression: build doc src src/detail test
From: bdawes_at_[hidden]
Date: 2009-10-09 10:27:59


Author: bemandawes
Date: 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
New Revision: 56675
URL: http://svn.boost.org/trac/boost/changeset/56675

Log:
tools/regression: begin clearing inspect issues
Added:
   trunk/tools/regression/test/compile-fail_fail.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/compile-fail~fail.cpp
   trunk/tools/regression/test/compile-fail_pass.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/compile-fail~pass.cpp
   trunk/tools/regression/test/compile_fail.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/compile~fail.cpp
   trunk/tools/regression/test/compile_pass.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/compile~pass.cpp
   trunk/tools/regression/test/compile_warn.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/compile~warn.cpp
   trunk/tools/regression/test/run-fail_compile-fail.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run-fail~compile-fail.cpp
   trunk/tools/regression/test/run-fail_fail-warn.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run-fail~fail-warn.cpp
   trunk/tools/regression/test/run-fail_fail.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run-fail~fail.cpp
   trunk/tools/regression/test/run-fail_pass.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run-fail~pass.cpp
   trunk/tools/regression/test/run-fail_warn.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run-fail~warn.cpp
   trunk/tools/regression/test/run_compile-fail.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run~compile-fail.cpp
   trunk/tools/regression/test/run_fail-note.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run~fail-note.cpp
   trunk/tools/regression/test/run_fail-warn.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run~fail-warn.cpp
   trunk/tools/regression/test/run_fail.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run~fail.cpp
   trunk/tools/regression/test/run_note.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run~note.cpp
   trunk/tools/regression/test/run_pass.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run~pass.cpp
   trunk/tools/regression/test/run_warn-note.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run~warn-note.cpp
   trunk/tools/regression/test/run_warn.cpp
      - copied unchanged from r56664, /trunk/tools/regression/test/run~warn.cpp
Removed:
   trunk/tools/regression/test/compile-fail~fail.cpp
   trunk/tools/regression/test/compile-fail~pass.cpp
   trunk/tools/regression/test/compile~fail.cpp
   trunk/tools/regression/test/compile~pass.cpp
   trunk/tools/regression/test/compile~warn.cpp
   trunk/tools/regression/test/run-fail~compile-fail.cpp
   trunk/tools/regression/test/run-fail~fail-warn.cpp
   trunk/tools/regression/test/run-fail~fail.cpp
   trunk/tools/regression/test/run-fail~pass.cpp
   trunk/tools/regression/test/run-fail~warn.cpp
   trunk/tools/regression/test/run~compile-fail.cpp
   trunk/tools/regression/test/run~fail-note.cpp
   trunk/tools/regression/test/run~fail-warn.cpp
   trunk/tools/regression/test/run~fail.cpp
   trunk/tools/regression/test/run~note.cpp
   trunk/tools/regression/test/run~pass.cpp
   trunk/tools/regression/test/run~warn-note.cpp
   trunk/tools/regression/test/run~warn.cpp
Text files modified:
   trunk/tools/regression/build/Jamroot.jam | 6 +++++
   trunk/tools/regression/doc/index.html | 2
   trunk/tools/regression/src/detail/tiny_xml_test.txt | 5 ++++
   trunk/tools/regression/src/library_test.bat | 6 +++++
   trunk/tools/regression/src/library_test.sh | 5 ++++
   trunk/tools/regression/src/run_tests.sh | 6 +++++
   trunk/tools/regression/test/Jamfile.v2 | 43 +++++++++++++++++++++++----------------
   trunk/tools/regression/test/test.bat | 7 +++++
   8 files changed, 60 insertions(+), 20 deletions(-)

Modified: trunk/tools/regression/build/Jamroot.jam
==============================================================================
--- trunk/tools/regression/build/Jamroot.jam (original)
+++ trunk/tools/regression/build/Jamroot.jam 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
@@ -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 : ../../.. ;

Modified: trunk/tools/regression/doc/index.html
==============================================================================
--- trunk/tools/regression/doc/index.html (original)
+++ trunk/tools/regression/doc/index.html 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
@@ -33,7 +33,7 @@
     <li>compiler_status.cpp -
     Generates HTML status tables from test_log.xml and other files.</li>
 
- <li>Jamfile.v2 - Builds process_jam_log
+ <li>Jamroot.jam - Builds process_jam_log
     and compiler_status executables.</li>
 
     <li>Library Status - Runs test programs

Modified: trunk/tools/regression/src/detail/tiny_xml_test.txt
==============================================================================
--- trunk/tools/regression/src/detail/tiny_xml_test.txt (original)
+++ trunk/tools/regression/src/detail/tiny_xml_test.txt 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
@@ -1,4 +1,9 @@
 <root>
+<frontmatter>
+// (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)
+</frontmatter>
 <element-1 at-1="abcd" at-2 = "defg" >
 <element-1a>
 It's Howdy Doody time!

Modified: trunk/tools/regression/src/library_test.bat
==============================================================================
--- trunk/tools/regression/src/library_test.bat (original)
+++ trunk/tools/regression/src/library_test.bat 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
@@ -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 "<bjam arguments>"
     echo where typical bjam arguements are:

Modified: trunk/tools/regression/src/library_test.sh
==============================================================================
--- trunk/tools/regression/src/library_test.sh (original)
+++ trunk/tools/regression/src/library_test.sh 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
@@ -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 <bjam arguments>"

Modified: trunk/tools/regression/src/run_tests.sh
==============================================================================
--- trunk/tools/regression/src/run_tests.sh (original)
+++ trunk/tools/regression/src/run_tests.sh 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
@@ -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.
 

Modified: trunk/tools/regression/test/Jamfile.v2
==============================================================================
--- trunk/tools/regression/test/Jamfile.v2 (original)
+++ trunk/tools/regression/test/Jamfile.v2 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
@@ -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

Deleted: trunk/tools/regression/test/compile-fail~fail.cpp
==============================================================================
--- trunk/tools/regression/test/compile-fail~fail.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,10 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-int main() { return 0; }
-

Deleted: trunk/tools/regression/test/compile-fail~pass.cpp
==============================================================================
--- trunk/tools/regression/test/compile-fail~pass.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,9 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#error example of a compile failure

Deleted: trunk/tools/regression/test/compile~fail.cpp
==============================================================================
--- trunk/tools/regression/test/compile~fail.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,9 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#error example of a compile failure

Deleted: trunk/tools/regression/test/compile~pass.cpp
==============================================================================
--- trunk/tools/regression/test/compile~pass.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,9 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-int main() { return 0; }

Deleted: trunk/tools/regression/test/compile~warn.cpp
==============================================================================
--- trunk/tools/regression/test/compile~warn.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,18 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-// provoke one or more compiler warnings
-
-int main(int argc, char * argv[] )
-{
- short s;
- unsigned long ul;
- s = s & ul; // warning from many compilers
- if ( s == ul ) {} // warning from GCC
- return 0;
-}

Deleted: trunk/tools/regression/test/run-fail~compile-fail.cpp
==============================================================================
--- trunk/tools/regression/test/run-fail~compile-fail.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,9 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#error example of a compile failure

Deleted: trunk/tools/regression/test/run-fail~fail-warn.cpp
==============================================================================
--- trunk/tools/regression/test/run-fail~fail-warn.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,16 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-int main()
-{
- short s;
- unsigned long ul;
- s = s & ul; // warning from many compilers
- if ( s == ul ) {} // warning from GCC
- return 0;
-}

Deleted: trunk/tools/regression/test/run-fail~fail.cpp
==============================================================================
--- trunk/tools/regression/test/run-fail~fail.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,12 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-int main()
-{
- return 0;
-}

Deleted: trunk/tools/regression/test/run-fail~pass.cpp
==============================================================================
--- trunk/tools/regression/test/run-fail~pass.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,15 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#include <iostream>
-
-int main()
-{
- std::cout << "example of output from a run-time failure\n";
- return 1;
-}

Deleted: trunk/tools/regression/test/run-fail~warn.cpp
==============================================================================
--- trunk/tools/regression/test/run-fail~warn.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,20 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#include <iostream>
-
-int main()
-{
- short s;
- unsigned long ul;
- s = s & ul; // warning from many compilers
- if ( s == ul ) {} // warning from GCC
-
- std::cout << "example of output from a run-time failure\n";
- return 1;
-}

Deleted: trunk/tools/regression/test/run~compile-fail.cpp
==============================================================================
--- trunk/tools/regression/test/run~compile-fail.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,9 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#error example of a compile failure

Deleted: trunk/tools/regression/test/run~fail-note.cpp
==============================================================================
--- trunk/tools/regression/test/run~fail-note.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,17 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#include <iostream>
-
-int main()
-{
- std::cout << "example of output before a <note> line\n";
- std::cout << "<note>\n";
- std::cout << "example of output after a <note> line\n";
- return 1;
-}

Deleted: trunk/tools/regression/test/run~fail-warn.cpp
==============================================================================
--- trunk/tools/regression/test/run~fail-warn.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,20 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#include <iostream>
-
-int main()
-{
- short s;
- unsigned long ul;
- s = s & ul; // warning from many compilers
- if ( s == ul ) {} // warning from GCC
-
- std::cout << "example of output from a run-time failure\n";
- return 1;
-}

Deleted: trunk/tools/regression/test/run~fail.cpp
==============================================================================
--- trunk/tools/regression/test/run~fail.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,14 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#include <iostream>
-
-int main()
-{
- return 1;
-}

Deleted: trunk/tools/regression/test/run~note.cpp
==============================================================================
--- trunk/tools/regression/test/run~note.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,17 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#include <iostream>
-
-int main()
-{
- std::cout << "example of output before a <note> line\n";
- std::cout << "<note>\n";
- std::cout << "example of output after a <note> line\n";
- return 0;
-}

Deleted: trunk/tools/regression/test/run~pass.cpp
==============================================================================
--- trunk/tools/regression/test/run~pass.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,12 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-int main()
-{
- return 0;
-}

Deleted: trunk/tools/regression/test/run~warn-note.cpp
==============================================================================
--- trunk/tools/regression/test/run~warn-note.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,24 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-#include <iostream>
-
-int main()
-{
- std::cout << "example of output before a <note> line\n";
- std::cout << "<note>\n";
- std::cout << "example of output after a <note> line\n";
-
- // provoke a compiler warning to make sure <note> takes priority over
- // a warning, but neither is lost from status reporting links HTML.
- short s;
- unsigned long ul;
- s = s & ul; // warning from many compilers
- if ( s == ul ) {} // warning from GCC
- return 0;
-}

Deleted: trunk/tools/regression/test/run~warn.cpp
==============================================================================
--- trunk/tools/regression/test/run~warn.cpp 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
+++ (empty file)
@@ -1,18 +0,0 @@
-// (C) Copyright Beman Dawes 2003. 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)
-
-// Test naming convention: the portion of the name before the tilde ("~")
-// identifies the bjam test type. The portion after the tilde
-// identifies the correct result to be reported by compiler_status.
-
-// provoke one or more compiler warnings
-
-int main(int argc, char * argv[] )
-{
- short s;
- unsigned long ul;
- s = s & ul; // warning from many compilers
- if ( s == ul ) {} // warning from GCC
- return 0;
-}

Modified: trunk/tools/regression/test/test.bat
==============================================================================
--- trunk/tools/regression/test/test.bat (original)
+++ trunk/tools/regression/test/test.bat 2009-10-09 10:27:57 EDT (Fri, 09 Oct 2009)
@@ -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


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