summaryrefslogtreecommitdiff
path: root/allTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'allTests.py')
-rw-r--r--allTests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/allTests.py b/allTests.py
index 583d7517a24..dd446b65c47 100644
--- a/allTests.py
+++ b/allTests.py
@@ -22,8 +22,8 @@ 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)
+TestUtil.run(testGroups, root=True)