From 9d6354d31149bd84c00b0bbb18b9f5ea24e1e70d Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Mon, 29 Jul 2013 16:52:58 +0000 Subject: [PATCH] Fix bug in unit test script svn: r22770 --- test/RunAllTests.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/RunAllTests.py b/test/RunAllTests.py index f502df06a..0519f86e4 100644 --- a/test/RunAllTests.py +++ b/test/RunAllTests.py @@ -57,11 +57,12 @@ 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