diff options
Diffstat (limited to 'objective-c/test/ios/controller/Classes/ViewController.m')
-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]; |