From cb147db6aa53be1bfaafb675fff4701fde4694f7 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Sat, 17 Apr 2010 17:36:53 +0100 Subject: [PATCH] Bug 882 - ./test.py reports 6 FAILs with --disable-python --- test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.py b/test.py index 5f57ae4c1..43629c143 100755 --- a/test.py +++ b/test.py @@ -45,6 +45,7 @@ interesting_config_items = [ "ENABLE_NSC", "ENABLE_REAL_TIME", "ENABLE_EXAMPLES", + "ENABLE_PYTHON_BINDINGS", ] ENABLE_NSC = False @@ -1313,7 +1314,7 @@ def run_tests(): # if len(options.suite) == 0 and len(options.example) == 0 and len(options.pyexample) == 0: if len(options.constrain) == 0 or options.constrain == "pyexample": - if ENABLE_EXAMPLES: + if ENABLE_EXAMPLES and ENABLE_PYTHON_BINDINGS: for test, do_run in python_tests: if eval(do_run): job = Job()