diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-05-08 12:44:14 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-05-08 12:44:14 -0230 |
commit | d28ec2cd55c6a1672a499b5245ac080dfb4703c1 (patch) | |
tree | 89e4ff148f212e157a5ed97475cd1e3606fa80fd /python/test/Ice/enums/Server.py | |
parent | Re-synchronized README (diff) | |
download | ice-d28ec2cd55c6a1672a499b5245ac080dfb4703c1.tar.bz2 ice-d28ec2cd55c6a1672a499b5245ac080dfb4703c1.tar.xz ice-d28ec2cd55c6a1672a499b5245ac080dfb4703c1.zip |
ICE-6485 enums tests fails with --cross=objective-c
Diffstat (limited to 'python/test/Ice/enums/Server.py')
-rwxr-xr-x | python/test/Ice/enums/Server.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/python/test/Ice/enums/Server.py b/python/test/Ice/enums/Server.py index f51922e12fc..cfaed170f22 100755 --- a/python/test/Ice/enums/Server.py +++ b/python/test/Ice/enums/Server.py @@ -31,6 +31,18 @@ class TestIntfI(Test.TestIntf): def opSimple(self, s1, current=None): return (s1, s1) + def opByteSeq(self, b1, current=None): + return (b1, b1) + + def opShortSeq(self, s1, current=None): + return (s1, s1) + + def opIntSeq(self, i1, current=None): + return (i1, i1) + + def opSimpleSeq(self, s1, current=None): + return (s1, s1) + def shutdown(self, current=None): current.adapter.getCommunicator().shutdown() |