Don't use non-existent test projects.

This commit is contained in:
Rene Rivera 2017-05-26 10:13:54 -05:00 committed by GitHub
parent 00b503c314
commit 8c27f4edcb

View file

@ -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) ) )