diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-25 00:34:53 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-25 00:34:53 +0000 |
commit | f4912e601ef172c7e6ff7e1b0fa825745fc64410 (patch) | |
tree | 93da8dc38ed4bf83d225210e4dfe674d65a30b68 /cppe/allTests.py | |
parent | fix stupid typo, remember to save your files before recompiling ... (diff) | |
download | ice-f4912e601ef172c7e6ff7e1b0fa825745fc64410.tar.bz2 ice-f4912e601ef172c7e6ff7e1b0fa825745fc64410.tar.xz ice-f4912e601ef172c7e6ff7e1b0fa825745fc64410.zip |
Removing some support for Slice classes. This is a first swipe so there is
more to remove
Diffstat (limited to 'cppe/allTests.py')
-rwxr-xr-x | cppe/allTests.py | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/cppe/allTests.py b/cppe/allTests.py index e47d483745d..69f781fcbce 100755 --- a/cppe/allTests.py +++ b/cppe/allTests.py @@ -51,24 +51,21 @@ def runTests(tests, num = 0): # # List of all basic tests. # -tests = [ \ - "IceUtil/thread", \ - "IceUtil/unicode", \ - "IceUtil/inputUtil", \ - "IceUtil/uuid", \ - "Ice/operations", \ - "Ice/exceptions", \ - "Ice/inheritance", \ - "Ice/facets", \ - "Ice/objects", \ - "Ice/faultTolerance", \ - "Ice/location", \ - "Ice/adapterDeactivation", \ - "Ice/slicing/exceptions", \ - "Ice/slicing/objects", \ - "Ice/gc", \ - "Ice/checksum", \ - "Ice/stream", \ +tests = [ + "IceUtil/thread", + "IceUtil/unicode", + "IceUtil/inputUtil", + "IceUtil/uuid", + "Ice/operations", + "Ice/exceptions", + "Ice/inheritance", + "Ice/facets", + "Ice/faultTolerance", + "Ice/location", + "Ice/adapterDeactivation", + "Ice/slicing/exceptions", + "Ice/checksum", + "Ice/stream", ] # |