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 /php/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 'php/allTests.py')
-rwxr-xr-x | php/allTests.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/php/allTests.py b/php/allTests.py index 0869b86e118..fb9d9ceb411 100755 --- a/php/allTests.py +++ b/php/allTests.py @@ -24,16 +24,16 @@ import TestUtil # List of all basic tests. # tests = [ - "Ice/proxy", - "Ice/operations", - "Ice/exceptions", - "Ice/inheritance", - "Ice/binding", - "Ice/facets", - "Ice/objects", - "Ice/slicing/exceptions", - "Ice/slicing/objects", - "Slice/keyword", + ("Ice/proxy", False), + ("Ice/operations", False), + ("Ice/exceptions", False), + ("Ice/inheritance", False), + ("Ice/binding", False), + ("Ice/facets", False), + ("Ice/objects", False), + ("Ice/slicing/exceptions", False), + ("Ice/slicing/objects", False), + ("Slice/keyword", False) ] if __name__ == "__main__": |