summaryrefslogtreecommitdiff
path: root/python/test/Ice/optional/ServerAMD.py
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-07-19 16:23:59 -0400
committerJoe George <joe@zeroc.com>2016-07-19 16:23:59 -0400
commitbc9778e005f31820656612b127582d497409af31 (patch)
tree4cf609eee934dc7ad4c7d57a071c7b321a51d33e /python/test/Ice/optional/ServerAMD.py
parentC++11 support in test/Ice/echo (diff)
parentICE-7239 - Disable Ice.Warn.Dispatch for Python Ice/proxy test (diff)
downloadice-bc9778e005f31820656612b127582d497409af31.tar.bz2
ice-bc9778e005f31820656612b127582d497409af31.tar.xz
ice-bc9778e005f31820656612b127582d497409af31.zip
Merge remote-tracking branch 'origin/3.6'
Diffstat (limited to 'python/test/Ice/optional/ServerAMD.py')
-rwxr-xr-xpython/test/Ice/optional/ServerAMD.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/python/test/Ice/optional/ServerAMD.py b/python/test/Ice/optional/ServerAMD.py
index b3b913304e4..a300cf17e22 100755
--- a/python/test/Ice/optional/ServerAMD.py
+++ b/python/test/Ice/optional/ServerAMD.py
@@ -121,7 +121,7 @@ class InitialI(Test.Initial):
def opVarStructSeq_async(self, cb, p1, current=None):
cb.ice_response(p1, p1)
- def opSerializable(self, cb, p1, current=None):
+ def opSerializable_async(self, cb, p1, current=None):
cb.ice_response(p1, p1)
def opIntIntDict_async(self, cb, p1, current=None):
@@ -140,7 +140,7 @@ class InitialI(Test.Initial):
cb.ice_response()
def returnOptionalClass_async(self, cb, req, current=None):
- cb.ice_response(Test.OneOptional(5))
+ cb.ice_response(Test.OneOptional(53))
def opG_async(self, cb, g, current=None):
cb.ice_response(g)
@@ -151,11 +151,14 @@ class InitialI(Test.Initial):
def supportsRequiredParams_async(self, cb, current=None):
cb.ice_response(False)
- def supportsJavaSerializable(self, cb, current=None):
+ def supportsJavaSerializable_async(self, cb, current=None):
cb.ice_response(True)
- def supportsCsharpSerializable(self, cb, current=None):
- cb.ice_response(True)
+ def supportsCsharpSerializable_async(self, cb, current=None):
+ cb.ice_response(False)
+
+ def supportsCppStringView_async(self, cb, current=None):
+ cb.ice_response(False)
def run(args, communicator):
communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010:udp")