From 145d7de6d49eabb8b4d3e92e4e290bd538727e8e Mon Sep 17 00:00:00 2001 From: Vassilii Khachaturov Date: Thu, 1 Aug 2013 14:06:43 +0000 Subject: [PATCH] Back-port Nick's fix from trunk RunAllTests only discovered files in the last seen directory. It now discovers more, but they're broken (fix to the tests not back-ported yet). svn: r22790 --- test/RunAllTests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/RunAllTests.py b/test/RunAllTests.py index 42ffc9313..70df6f706 100644 --- a/test/RunAllTests.py +++ b/test/RunAllTests.py @@ -55,11 +55,11 @@ def getTestSuites(): if len ([i for i in f[2] \ if i[-8:] == "_Test.py"]) ] + test_suites = [] + perf_suites = [] for (dir,test_modules) in paths: sys.path.append(dir) - test_suites = [] - perf_suites = [] for module in test_modules: if module[-8:] != "_Test.py": continue