From 6b8ab7a5a3f0ef263055cb2a4b745d1304f0b528 Mon Sep 17 00:00:00 2001 From: Stefan Seefeld Date: Fri, 9 Mar 2018 13:08:07 -0500 Subject: [PATCH] Conditionalize tests. --- test/Jamfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/Jamfile b/test/Jamfile index 7f088cf7..9a5c7569 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -50,6 +50,8 @@ rule require-windows ( properties * ) } } +if [ python.configured ] +{ test-suite python : @@ -97,12 +99,16 @@ bpl-test crossmod_exception [ bpl-test polymorphism2_auto_ptr : polymorphism2_auto_ptr.py polymorphism2.py polymorphism2_auto_ptr.cpp + : [ requires auto_ptr ] ] [ bpl-test polymorphism ] [ bpl-test polymorphism2 ] -[ bpl-test auto_ptr ] +[ bpl-test auto_ptr + : # files + : [ requires auto_ptr ] +] [ bpl-test minimal ] [ bpl-test args ] @@ -248,3 +254,4 @@ bpl-test crossmod_opaque ; +}