summaryrefslogtreecommitdiff
path: root/python/test/Ice/optional/Server.py
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-07-19 15:49:09 -0400
committerJoe George <joe@zeroc.com>2016-07-19 15:49:09 -0400
commit58a1b746a87a034ae30584234664991e6fce6bf8 (patch)
tree6cfe40e8dd8a277310acff36e5b420453be50eb1 /python/test/Ice/optional/Server.py
parentIceSSL/configuration bogus property (diff)
downloadice-58a1b746a87a034ae30584234664991e6fce6bf8.tar.bz2
ice-58a1b746a87a034ae30584234664991e6fce6bf8.tar.xz
ice-58a1b746a87a034ae30584234664991e6fce6bf8.zip
ICE-7241 - Python Ice/optional cross test failure
Diffstat (limited to 'python/test/Ice/optional/Server.py')
-rwxr-xr-xpython/test/Ice/optional/Server.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/test/Ice/optional/Server.py b/python/test/Ice/optional/Server.py
index eba7e7ccad6..6d0a280169a 100755
--- a/python/test/Ice/optional/Server.py
+++ b/python/test/Ice/optional/Server.py
@@ -136,7 +136,7 @@ class InitialI(Test.Initial):
pass
def returnOptionalClass(self, req, current=None):
- return Test.OneOptional(5)
+ return Test.OneOptional(53)
def opG(self, g, current=None):
return g
@@ -153,6 +153,9 @@ class InitialI(Test.Initial):
def supportsCsharpSerializable(self, current=None):
return True
+ def supportsCppStringView(self, current=None):
+ return False
+
def run(args, communicator):
communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010:udp")
adapter = communicator.createObjectAdapter("TestAdapter")