diff options
Diffstat (limited to 'allTests.py')
-rwxr-xr-x[-rw-r--r--] | allTests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/allTests.py b/allTests.py index 583d7517a24..3ad3652e92e 100644..100755 --- a/allTests.py +++ b/allTests.py @@ -22,8 +22,9 @@ for d in [ "cpp", "java", "cs", "py", "rb", "php" ]: current_mod = imp.load_module("allTests", f, filename, (".py", "r", imp.PY_SOURCE)) f.close() - tests = TestUtil.getTestSet([ os.path.join(d, "test", x) for x in current_mod.tests ]) + tests = [ os.path.join(d, "test", x) for x in current_mod.tests ] if len(tests) > 0: testGroups.extend(tests) -TestUtil.rootRun(testGroups) +print testGroups +TestUtil.run(testGroups, root=True) |