Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78647 - trunk/tools/build/v2/tools
From: jurko.gospodnetic_at_[hidden]
Date: 2012-05-26 15:11:27


Author: jurko
Date: 2012-05-26 15:11:27 EDT (Sat, 26 May 2012)
New Revision: 78647
URL: http://svn.boost.org/trac/boost/changeset/78647

Log:
Merging some Boost Build testing.jam module changes into the Python Boost Build port - making unit-test action work with paths containing spaces + a comment typo correction.
Text files modified:
   trunk/tools/build/v2/tools/testing-aux.jam | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/tools/build/v2/tools/testing-aux.jam
==============================================================================
--- trunk/tools/build/v2/tools/testing-aux.jam (original)
+++ trunk/tools/build/v2/tools/testing-aux.jam 2012-05-26 15:11:27 EDT (Sat, 26 May 2012)
@@ -175,7 +175,7 @@
 actions unit-test
 {
     $(PATH_SETUP)
- $(LAUNCHER) $(>) $(ARGS) && $(.MAKE_FILE) $(<)
+ $(LAUNCHER) "$(>)" $(ARGS) && $(.MAKE_FILE) "$(<)"
 }
 
 rule record-time ( target : source : start end user system )
@@ -185,9 +185,9 @@
     SYSTEM_TIME on $(target) += $(src-string)$(system) ;
 }
 
-# Calling this rule requests that Boost Build time how long it taks to build the
-# 'source' target and display the results both on the standard output and in the
-# 'target' file.
+# Calling this rule requests that Boost Build time how long it takes to build
+# the 'source' target and display the results both on the standard output and in
+# the 'target' file.
 #
 rule time ( target : source : properties * )
 {


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