diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-05-08 15:35:15 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-05-08 15:35:15 +0800 |
commit | 9a9aa5cd8646d0abb7d2ea89af88d66fcee4ec00 (patch) | |
tree | 66a7b94d8de7862b83fa5b153e872ab87fdba585 /php/allTests.py | |
parent | Bug 3097 - Smart pointer formal parameter not exception safe (diff) | |
download | ice-9a9aa5cd8646d0abb7d2ea89af88d66fcee4ec00.tar.bz2 ice-9a9aa5cd8646d0abb7d2ea89af88d66fcee4ec00.tar.xz ice-9a9aa5cd8646d0abb7d2ea89af88d66fcee4ec00.zip |
http://bugzilla/bugzilla/show_bug.cgi?id=3089 - more changes to optimize --all.
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 fb9d9ceb411..19221ac2976 100755 --- a/php/allTests.py +++ b/php/allTests.py @@ -24,16 +24,16 @@ import TestUtil # List of all basic tests. # tests = [ - ("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) + ("Ice/proxy", ["core"]), + ("Ice/operations", ["core"]), + ("Ice/exceptions", ["core"]), + ("Ice/inheritance", ["core"]), + ("Ice/binding", ["core"]), + ("Ice/facets", ["core"]), + ("Ice/objects", ["core"]), + ("Ice/slicing/exceptions", ["core"]), + ("Ice/slicing/objects", ["core"]), + ("Slice/keyword", ["once"]) ] if __name__ == "__main__": |