diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-05-07 13:36:05 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-05-07 13:36:05 +0800 |
commit | 0f34a1e940816605bed2b246c91cd6a9978d83e2 (patch) | |
tree | 6a0a2ad14ea505a5b528a1b3e76e03ebba56abff /allTests.py | |
parent | http://bugzilla/bugzilla/show_bug.cgi?id=3088 - allTests.py --all needs to te... (diff) | |
download | ice-0f34a1e940816605bed2b246c91cd6a9978d83e2.tar.bz2 ice-0f34a1e940816605bed2b246c91cd6a9978d83e2.tar.xz ice-0f34a1e940816605bed2b246c91cd6a9978d83e2.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, 2 insertions, 2 deletions
diff --git a/allTests.py b/allTests.py index e76da10ea6a..7cdc8cc6de3 100755 --- a/allTests.py +++ b/allTests.py @@ -23,8 +23,8 @@ for d in [ "cpp", "java", "cs", "py", "rb", "php" ]: f.close() tests = [] - for t, runonce in current_mod.tests: - tests.append((os.path.join(d, "test", t), runonce)) + + tests = [ (os.path.join(d, "test", x), y) for x, y in current_mod.tests ] if len(tests) > 0: testGroups.extend(tests) |