diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-05-07 13:18:08 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-05-07 13:18:08 +0800 |
commit | 7bfa34e5d76ba640585259ac6d6f0de820161d23 (patch) | |
tree | 90854392f5ca78796d424aca208ceaaac4bcb328 /allTests.py | |
parent | Bug 3090 - Escape properties written to config files by IceGrid (diff) | |
download | ice-7bfa34e5d76ba640585259ac6d6f0de820161d23.tar.bz2 ice-7bfa34e5d76ba640585259ac6d6f0de820161d23.tar.xz ice-7bfa34e5d76ba640585259ac6d6f0de820161d23.zip |
http://bugzilla/bugzilla/show_bug.cgi?id=3089 - dont run all tests with all combinations. Added --script option
Diffstat (limited to 'allTests.py')
-rwxr-xr-x | allTests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/allTests.py b/allTests.py index dd446b65c47..e76da10ea6a 100755 --- a/allTests.py +++ b/allTests.py @@ -22,7 +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 = [ os.path.join(d, "test", x) for x in current_mod.tests ] + tests = [] + for t, runonce in current_mod.tests: + tests.append((os.path.join(d, "test", t), runonce)) if len(tests) > 0: testGroups.extend(tests) |