diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-04-10 09:40:33 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-04-10 09:40:33 -0230 |
commit | 5bdb1a964adc4e14dc8280e40ab2665fffacd4ce (patch) | |
tree | c371bef0c47e3881ad74ff5cdfeb9d9464afc393 /csharp/allTests.py | |
parent | Bogus output in slice2java --depend-xml (diff) | |
download | ice-5bdb1a964adc4e14dc8280e40ab2665fffacd4ce.tar.bz2 ice-5bdb1a964adc4e14dc8280e40ab2665fffacd4ce.tar.xz ice-5bdb1a964adc4e14dc8280e40ab2665fffacd4ce.zip |
ICE-6437 Remove Silverlight support
Diffstat (limited to 'csharp/allTests.py')
-rwxr-xr-x | csharp/allTests.py | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/csharp/allTests.py b/csharp/allTests.py index 7ca1ac71f49..771548318d4 100755 --- a/csharp/allTests.py +++ b/csharp/allTests.py @@ -25,12 +25,12 @@ import TestUtil # List of all basic tests. # tests = [ - ("Slice/keyword", ["once", "nosilverlight"]), - ("Slice/structure", ["once", "nosilverlight"]), - ("Slice/macros", ["once", "nosilverlight"]), - ("IceUtil/inputUtil", ["once", "nosilverlight"]), + ("Slice/keyword", ["once"]), + ("Slice/structure", ["once"]), + ("Slice/macros", ["once"]), + ("IceUtil/inputUtil", ["once"]), ("Ice/proxy", ["core"]), - ("Ice/properties", ["once", "nosilverlight"]), + ("Ice/properties", ["once"]), ("Ice/operations", ["core"]), ("Ice/exceptions", ["core"]), ("Ice/ami", ["core", "nocompress"]), @@ -45,36 +45,36 @@ tests = [ ("Ice/adapterDeactivation", ["core"]), ("Ice/slicing/exceptions", ["core"]), ("Ice/slicing/objects", ["core"]), - ("Ice/checksum", ["core", "nocompact", "nosilverlight"]), + ("Ice/checksum", ["core", "nocompact"]), ("Ice/dispatcher", ["core"]), ("Ice/stream", ["core"]), ("Ice/retry", ["core"]), ("Ice/timeout", ["core", "nocompress"]), - ("Ice/acm", ["core", "nosilverlight"]), + ("Ice/acm", ["core"]), ("Ice/servantLocator", ["core"]), - ("Ice/interceptor", ["core", "nosilverlight"]), + ("Ice/interceptor", ["core"]), ("Ice/dictMapping", ["core"]), ("Ice/seqMapping", ["core"]), - ("Ice/background", ["core", "nosilverlight", "nosocks"]), - ("Ice/udp", ["core", "nosilverlight"]), - ("Ice/defaultServant", ["core", "nosilverlight"]), + ("Ice/background", ["core", "nosocks"]), + ("Ice/udp", ["core"]), + ("Ice/defaultServant", ["core"]), ("Ice/defaultValue", ["core"]), - ("Ice/threadPoolPriority", ["core", "nomono", "nosilverlight"]), + ("Ice/threadPoolPriority", ["core", "nomono"]), ("Ice/invoke", ["core"]), - ("Ice/hash", ["once", "nosilverlight"]), - ("Ice/plugin", ["core", "nosilverlight"]), + ("Ice/hash", ["once"]), + ("Ice/plugin", ["core"]), ("Ice/optional", ["core"]), - ("Ice/admin", ["core", "nosilverlight"]), - ("Ice/metrics", ["core", "nossl", "nows", "noipv6", "nocompress", "nosilverlight", "nosocks"]), + ("Ice/admin", ["core"]), + ("Ice/metrics", ["core", "nossl", "nows", "noipv6", "nocompress", "nosocks"]), ("Ice/enums", ["core"]), - ("Ice/serialize", ["core", "nosilverlight"]), - ("Ice/networkProxy", ["core", "noipv6", "nosocks", "nosilverlight"]), - ("IceBox/admin", ["core", "noipv6", "nosilverlight", "nomx"]), - ("IceBox/configuration", ["core", "noipv6", "nosilverlight", "nomx"]), - ("Glacier2/router", ["service", "nosilverlight"]), - ("Glacier2/sessionHelper", ["core", "nosilverlight"]), - ("IceGrid/simple", ["service", "nosilverlight"]), - ("IceSSL/configuration", ["once", "novista", "nomono", "nocompact", "nosilverlight"]), + ("Ice/serialize", ["core"]), + ("Ice/networkProxy", ["core", "noipv6", "nosocks"]), + ("IceBox/admin", ["core", "noipv6", "nomx"]), + ("IceBox/configuration", ["core", "noipv6", "nomx"]), + ("Glacier2/router", ["service"]), + ("Glacier2/sessionHelper", ["core"]), + ("IceGrid/simple", ["service"]), + ("IceSSL/configuration", ["once", "novista", "nomono", "nocompact"]), ] if __name__ == "__main__": |