From ae5e032616e762a7fd9eb7bb392dabef0cee2236 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 19 Feb 2003 08:08:56 +0000 Subject: [PATCH] Fix bug which placed input-files at LOCATE_SOURCE. [SVN r17522] --- testing.jam | 4 ++-- v1/testing.jam | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/testing.jam b/testing.jam index fe5fef7f5..f5907a21e 100755 --- a/testing.jam +++ b/testing.jam @@ -372,7 +372,7 @@ rule run ( sources + : args * : input-files * : requirements * : name ? : defaul { local gRUN_TEST_ARGS = $(args) ; local gRUN_TEST_INPUT_FILES = $(input-files) ; - SEARCH on $(input-files) = $(LOCATE_SOURCE) ; + SEARCH on $(input-files) = $(SEARCH_SOURCE) ; return [ boost-test $(sources) : RUN : $(requirements) : $(name) : $(default-build) ] ; } @@ -380,7 +380,7 @@ rule run-fail ( sources + : args * : input-files * : requirements * : name ? ) { local gRUN_TEST_ARGS = $(2) ; local gRUN_TEST_INPUT_FILES = $(3) ; - SEARCH on $(3) = $(LOCATE_SOURCE) ; + SEARCH on $(3) = $(SEARCH_SOURCE) ; return [ boost-test $(<) : RUN_FAIL : $(4) : $(name) ] ; } diff --git a/v1/testing.jam b/v1/testing.jam index fe5fef7f5..f5907a21e 100755 --- a/v1/testing.jam +++ b/v1/testing.jam @@ -372,7 +372,7 @@ rule run ( sources + : args * : input-files * : requirements * : name ? : defaul { local gRUN_TEST_ARGS = $(args) ; local gRUN_TEST_INPUT_FILES = $(input-files) ; - SEARCH on $(input-files) = $(LOCATE_SOURCE) ; + SEARCH on $(input-files) = $(SEARCH_SOURCE) ; return [ boost-test $(sources) : RUN : $(requirements) : $(name) : $(default-build) ] ; } @@ -380,7 +380,7 @@ rule run-fail ( sources + : args * : input-files * : requirements * : name ? ) { local gRUN_TEST_ARGS = $(2) ; local gRUN_TEST_INPUT_FILES = $(3) ; - SEARCH on $(3) = $(LOCATE_SOURCE) ; + SEARCH on $(3) = $(SEARCH_SOURCE) ; return [ boost-test $(<) : RUN_FAIL : $(4) : $(name) ] ; }