$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62051 - trunk/status
From: steven_at_[hidden]
Date: 2010-05-17 00:53:30
Author: steven_watanabe
Date: 2010-05-17 00:53:29 EDT (Mon, 17 May 2010)
New Revision: 62051
URL: http://svn.boost.org/trac/boost/changeset/62051
Log:
Make the command for running just bcp consistent with real libraries
Text files modified: 
   trunk/status/Jamfile.v2 |    15 ++++++++-------                         
   1 files changed, 8 insertions(+), 7 deletions(-)
Modified: trunk/status/Jamfile.v2
==============================================================================
--- trunk/status/Jamfile.v2	(original)
+++ trunk/status/Jamfile.v2	2010-05-17 00:53:29 EDT (Mon, 17 May 2010)
@@ -20,7 +20,7 @@
 import testing ;
 import modules ;
 
-local rule run-tests ( tests * )
+local rule run-tests ( root : tests * )
 {
     local limit-tests = [ MATCH "^--limit-tests=(.*)" : [ modules.peek : ARGV ] ] ;
     for local test in $(tests)
@@ -29,23 +29,23 @@
         {
             if [ MATCH "^($(limit-tests))" : $(test) ]
             {
-                build-project ../libs/$(test) ;
+                build-project ../$(root)/$(test) ;
             }
             else
             {
-                use-project /boost/$(test) : ../libs/$(test) ;
+                use-project /boost/$(test) : ../$(root)/$(test) ;
             }
         }
         else
         {
-            build-project ../libs/$(test) ;
+            build-project ../$(root)/$(test) ;
         }
     }
 }
 
 # Tests from Jamfiles in individual library test subdirectories
 # Please keep these in alphabetic order by test-suite name
-run-tests
+run-tests libs :
     accumulators/test           # test-suite accumulators
     algorithm/minmax/test       # test-suite algorith/minmax
     algorithm/string/test       # test-suite algorithm/string
@@ -139,7 +139,8 @@
     variant/test                # test-suite variant
     wave/test/build             # test-suite wave
     xpressive/test              # test-suite xpressive
-
-    ../tools/bcp/test
     ;
 
+run-tests tools :
+    bcp/test
+    ;