summaryrefslogtreecommitdiff
path: root/allTests.py
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2008-05-07 13:36:05 +0800
committerMatthew Newhook <matthew@zeroc.com>2008-05-07 13:36:05 +0800
commit0f34a1e940816605bed2b246c91cd6a9978d83e2 (patch)
tree6a0a2ad14ea505a5b528a1b3e76e03ebba56abff /allTests.py
parenthttp://bugzilla/bugzilla/show_bug.cgi?id=3088 - allTests.py --all needs to te... (diff)
downloadice-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-xallTests.py4
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)