diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-06-30 17:19:18 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-06-30 17:21:34 -0400 |
commit | ef93e84cf322512b2507d65327a7d022b3bd2e4e (patch) | |
tree | a7639afe52759bdbecd8c64e116ca2dc80924ed0 /objective-c | |
parent | minor edits to csharp/BuildInstructions.md (diff) | |
download | ice-ef93e84cf322512b2507d65327a7d022b3bd2e4e.tar.bz2 ice-ef93e84cf322512b2507d65327a7d022b3bd2e4e.tar.xz ice-ef93e84cf322512b2507d65327a7d022b3bd2e4e.zip |
Increased stack size
Diffstat (limited to 'objective-c')
-rw-r--r-- | objective-c/test/ios/controller/Classes/ViewController.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/objective-c/test/ios/controller/Classes/ViewController.m b/objective-c/test/ios/controller/Classes/ViewController.m index 6fa4565f9ad..6c1f742719c 100644 --- a/objective-c/test/ios/controller/Classes/ViewController.m +++ b/objective-c/test/ios/controller/Classes/ViewController.m @@ -299,6 +299,12 @@ TestCommonInit(helper, @selector(print:)); TestCommonTestInit(helper, @selector(serverReady), @"", NO, NO); } + + // + // Use a 768KB thread stack size for the objects test. This is necessary when running the + // test on arm64 devices with a debug Ice libraries which require lots of stack space. + // + [helper setStackSize:768 * 1024]; [helper start]; id<ICEObjectPrx> prx = [c.adapter addWithUUID:ICE_AUTORELEASE([[ProcessI alloc] init:_controller helper:helper])]; return [TestCommonProcessPrx uncheckedCast:prx]; |