summaryrefslogtreecommitdiff
path: root/status/Jamfile.v2
diff options
context:
space:
mode:
Diffstat (limited to 'status/Jamfile.v2')
-rw-r--r--status/Jamfile.v28
1 files changed, 4 insertions, 4 deletions
diff --git a/status/Jamfile.v2 b/status/Jamfile.v2
index 6d77de0280..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) ) )
@@ -170,9 +173,6 @@ run-tests libs : $(libs-to-test)/test ;
# Tests from Jamfiles in individual library test subdirectories
# Please keep these in alphabetic order by test-suite name
run-tests libs :
- concept_check # test-suite concept_check
- disjoint_sets # test-suite disjoint_sets
- dynamic_bitset # test-suite dynamic_bitset
wave/test/build # test-suite wave
;