Fix bug in unit test script

svn: r22769
This commit is contained in:
Nick Hall 2013-07-29 16:52:30 +00:00
parent 471b6beace
commit 561886f41e

View File

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