2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

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]
This commit is contained in:
Jurko Gospodnetić
2012-05-26 19:11:27 +00:00
parent 0aebb289ee
commit 21f7ca56c6

View File

@@ -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 * )
{