|
Boost-Commit : |
From: john_at_[hidden]
Date: 2008-04-09 07:34:21
Author: johnmaddock
Date: 2008-04-09 07:34:20 EDT (Wed, 09 Apr 2008)
New Revision: 44121
URL: http://svn.boost.org/trac/boost/changeset/44121
Log:
Run config_info and config_test in both single and multi-thread modes.
Text files modified:
trunk/libs/config/test/Jamfile.v2 | 10 +++++-----
trunk/libs/config/test/config_info.cpp | 2 ++
trunk/libs/config/test/config_test.cpp | 2 +-
trunk/libs/config/tools/generate.cpp | 6 ++++--
4 files changed, 12 insertions(+), 8 deletions(-)
Modified: trunk/libs/config/test/Jamfile.v2
==============================================================================
--- trunk/libs/config/test/Jamfile.v2 (original)
+++ trunk/libs/config/test/Jamfile.v2 2008-04-09 07:34:20 EDT (Wed, 09 Apr 2008)
@@ -1,7 +1,7 @@
#
# Regression test Jamfile for boost configuration setup.
# *** DO NOT EDIT THIS FILE BY HAND ***
-# This file was automatically generated on Fri Mar 28 16:52:14 2008
+# This file was automatically generated on Wed Apr 09 12:31:02 2008
# by libs/config/tools/generate.cpp
# Copyright John Maddock.
# Use, modification and distribution are subject to the
@@ -11,14 +11,14 @@
# If you need to alter build preferences then set them in
# the template defined in options_v2.jam.
#
-import testing ;
-
path-constant DOT : . ;
include $(DOT)/options_v2.jam ;
-run config_info.cpp ;
+run config_info.cpp : : : <threading>single <toolset>msvc:<runtime-link>static <toolset>msvc:<link>static ;
+run config_info.cpp : : : <threading>multi : config_info_threaded ;
run math_info.cpp : : : <toolset>borland:<runtime-link>static <toolset>borland:<link>static ;
-run config_test.cpp ;
+run config_test.cpp : : : <threading>single <toolset>msvc:<runtime-link>static <toolset>msvc:<link>static ;
+run config_test.cpp : : : <threading>multi : config_test_threaded ;
run limits_test.cpp ../../test/build//boost_test_exec_monitor ;
run abi/abi_test.cpp abi/main.cpp ;
Modified: trunk/libs/config/test/config_info.cpp
==============================================================================
--- trunk/libs/config/test/config_info.cpp (original)
+++ trunk/libs/config/test/config_info.cpp 2008-04-09 07:34:20 EDT (Wed, 09 Apr 2008)
@@ -1021,6 +1021,8 @@
+
+
// END GENERATED BLOCK
PRINT_MACRO(BOOST_INTEL);
Modified: trunk/libs/config/test/config_test.cpp
==============================================================================
--- trunk/libs/config/test/config_test.cpp (original)
+++ trunk/libs/config/test/config_test.cpp 2008-04-09 07:34:20 EDT (Wed, 09 Apr 2008)
@@ -1,4 +1,4 @@
-// This file was automatically generated on Fri Mar 28 16:52:14 2008
+// This file was automatically generated on Wed Apr 09 12:31:02 2008
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the
Modified: trunk/libs/config/tools/generate.cpp
==============================================================================
--- trunk/libs/config/tools/generate.cpp (original)
+++ trunk/libs/config/tools/generate.cpp 2008-04-09 07:34:20 EDT (Wed, 09 Apr 2008)
@@ -128,9 +128,11 @@
"# the template defined in options_v2.jam.\n#\n"
"path-constant DOT : . ;\n"
"include $(DOT)/options_v2.jam ;\n\n"
- "run config_info.cpp ;\n"
+ "run config_info.cpp : : : <threading>single <toolset>msvc:<runtime-link>static <toolset>msvc:<link>static ;\n"
+ "run config_info.cpp : : : <threading>multi : config_info_threaded ;\n"
"run math_info.cpp : : : <toolset>borland:<runtime-link>static <toolset>borland:<link>static ;\n"
- "run config_test.cpp ;\n"
+ "run config_test.cpp : : : <threading>single <toolset>msvc:<runtime-link>static <toolset>msvc:<link>static ;\n"
+ "run config_test.cpp : : : <threading>multi : config_test_threaded ;\n"
"run limits_test.cpp ../../test/build//boost_test_exec_monitor ;\n"
"run abi/abi_test.cpp abi/main.cpp ;\n\n";
ofs << jamfile_v2.str() << std::endl;
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