summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dimov <pdimov@gmail.com>2019-01-08 18:02:32 +0200
committerPeter Dimov <pdimov@gmail.com>2019-01-08 18:02:32 +0200
commit39c5a8cd34666f968c12ee0420e3823ab05417e1 (patch)
tree1812785ae0d7bf099df9a3293974a6b798601674
parent10b0743b2f2d4f488bdd810362f401a1091780c5 (diff)
downloadboost-feature/fix-status-tools.tar.gz
Re-enable tools/ testingfeature/fix-status-tools
-rw-r--r--status/Jamfile.v26
1 files changed, 4 insertions, 2 deletions
diff --git a/status/Jamfile.v2 b/status/Jamfile.v2
index e36f775362..ee0288945a 100644
--- a/status/Jamfile.v2
+++ b/status/Jamfile.v2
@@ -190,6 +190,7 @@ for local libdir in [ path.glob $(BOOST_ROOT) : libs/* ]
}
}
}
+
libs-to-test = [ SORT $(libs-to-test) ] ;
run-tests libs : $(libs-to-test)/test ;
@@ -201,15 +202,16 @@ local tools-to-test = ;
for local tooldir in bcp check_build quickbook
{
local jamfile = [ modules.peek project : JAMFILE ] ;
- local jamfiles = [ path.glob [ path.join tools $(tooldir) test ] : $(jamfile) ] ;
+ local jamfiles = [ path.glob [ path.join $(BOOST_ROOT) tools $(tooldir) test ] : $(jamfile) ] ;
if $(jamfiles)
{
tools-to-test += $(tooldir) ;
}
}
-run-tests tools : $(tools-to-test)/test ;
+#ECHO "tools-to-test:" $(tools-to-test) ;
+run-tests tools : $(tools-to-test)/test ;
if $(check-libs-only-targets)
{