From 21f7ca56c6dbc8daed2bd93a3559d29bcc76c6f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 26 May 2012 19:11:27 +0000 Subject: [PATCH] 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. [SVN r78647] --- src/tools/testing-aux.jam | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tools/testing-aux.jam b/src/tools/testing-aux.jam index 525dafd0c..6396a219d 100644 --- a/src/tools/testing-aux.jam +++ b/src/tools/testing-aux.jam @@ -175,7 +175,7 @@ actions quietly updated ignore piecemeal together RmTemps 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 @@ rule record-time ( target : source : start end user system ) 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 * ) {