summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Rivera <grafikrobot@gmail.com>2017-05-26 10:13:54 -0500
committerGitHub <noreply@github.com>2017-05-26 10:13:54 -0500
commit8c27f4edcbfdaab9f87ac495bdf7eaffba548bbd (patch)
tree9363efa0f7618676cb491072ae89e9cc7223b368
parent00b503c314effc1f45e401071a977d7592d30090 (diff)
downloadboost-8c27f4edcbfdaab9f87ac495bdf7eaffba548bbd.tar.gz
Don't use non-existent test projects.
-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) ) )