diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-02-14 16:22:39 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-02-14 16:22:39 +0800 |
commit | 294ec25fda6e3785c54970d274b860b1ca837955 (patch) | |
tree | 26e5d1987ffdfde7bbacb87fdfb7b96bbef998e9 /allTests.py | |
parent | Merge branch 'bug2435' (diff) | |
download | ice-294ec25fda6e3785c54970d274b860b1ca837955.tar.bz2 ice-294ec25fda6e3785c54970d274b860b1ca837955.tar.xz ice-294ec25fda6e3785c54970d274b860b1ca837955.zip |
merged bug2615
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) |