summaryrefslogtreecommitdiff
path: root/status
diff options
context:
space:
mode:
authorRene Rivera <grafikrobot@gmail.com>2017-05-26 10:23:07 -0500
committerGitHub <noreply@github.com>2017-05-26 10:23:07 -0500
commit552fbf002f1338d4a4b2d0edc4c9de4352a88930 (patch)
tree0371ad53425e4f3664b91726575fd415285ad935 /status
parent229c5dbaf27cb5f2b90e83476116e6ab06adcd0a (diff)
downloadboost-552fbf002f1338d4a4b2d0edc4c9de4352a88930.tar.gz
Don't use non-existent test projects.
Diffstat (limited to 'status')
-rw-r--r--status/Jamfile.v25
1 files changed, 4 insertions, 1 deletions
diff --git a/status/Jamfile.v2 b/status/Jamfile.v2
index 36be30b096..8468365aa7 100644
--- a/status/Jamfile.v2
+++ b/status/Jamfile.v2
@@ -106,7 +106,10 @@ local rule run-tests ( root : tests * )
t = [ CALC $(t) + 2 ] ;
f = [ CALC $(f) + 2 ] ;
}
- use-project /boost/$(test) : ../$(root)/$(test) ;
+ if [ path.exists ../$(root)/$(test) ]
+ {
+ use-project /boost/$(test) : ../$(root)/$(test) ;
+ }
if $(include-test) = y
{
if $(root) = libs && ( ! ( $(library) in $(libraries) ) )