summaryrefslogtreecommitdiff
path: root/status
diff options
context:
space:
mode:
authorPeter Dimov <pdimov@gmail.com>2019-01-08 18:02:32 +0200
committerPeter Dimov <pdimov@gmail.com>2019-01-09 21:19:41 +0200
commitd8f5b8d163ae1b2dbf4ea4fbf1601c6435f540a4 (patch)
treea276e81d5cdfd11ac66d46c1c07863ccd210a24a /status
parent661369952e06da677eb0323b7d006e8867be9154 (diff)
downloadboost-d8f5b8d163ae1b2dbf4ea4fbf1601c6435f540a4.tar.gz
Re-enable tools/ testing
Diffstat (limited to 'status')
-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)
{