diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-02-13 12:35:22 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-02-13 14:15:36 +0100 |
commit | 9358fdee4360f40451641f49fcd38b177f93c4ad (patch) | |
tree | 8ff4ec1deb284d1c4335c9ea3a57c12ee4c2953d /objective-c | |
parent | Fix building PHP with Windows C++ NuGet packages (diff) | |
download | ice-9358fdee4360f40451641f49fcd38b177f93c4ad.tar.bz2 ice-9358fdee4360f40451641f49fcd38b177f93c4ad.tar.xz ice-9358fdee4360f40451641f49fcd38b177f93c4ad.zip |
Fixed UWP cross operation test failure
Diffstat (limited to 'objective-c')
-rw-r--r-- | objective-c/test/Ice/operations/OperationsTest.ice | 2 | ||||
-rw-r--r-- | objective-c/test/Ice/operations/TestI.m | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/objective-c/test/Ice/operations/OperationsTest.ice b/objective-c/test/Ice/operations/OperationsTest.ice index 654afb00918..7e87d4bed05 100644 --- a/objective-c/test/Ice/operations/OperationsTest.ice +++ b/objective-c/test/Ice/operations/OperationsTest.ice @@ -119,6 +119,8 @@ interface MyClass { void shutdown(); + bool supportsCompress(); + void opVoid(); byte opByte(byte p1, byte p2, diff --git a/objective-c/test/Ice/operations/TestI.m b/objective-c/test/Ice/operations/TestI.m index 1dd7d277063..8c4a5847d32 100644 --- a/objective-c/test/Ice/operations/TestI.m +++ b/objective-c/test/Ice/operations/TestI.m @@ -856,4 +856,9 @@ { [[current.adapter getCommunicator] shutdown]; } + +-(BOOL) supportsCompress:(ICECurrent*)current +{ + return YES; +} @end |