diff options
Diffstat (limited to 'scripts/tests/Ice/objects.py')
-rw-r--r-- | scripts/tests/Ice/objects.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/tests/Ice/objects.py b/scripts/tests/Ice/objects.py index b494796db84..59791cd951c 100644 --- a/scripts/tests/Ice/objects.py +++ b/scripts/tests/Ice/objects.py @@ -19,6 +19,12 @@ class ObjectClientServerTestCase(ClientServerTestCase): props = ClientServerTestCase.getProps(self, process, current) if process.getMapping(current) in ["java"] and isinstance(process, Server): props["Ice.ThreadPool.Server.StackSize"] = 512 * 1024 + elif current.config.buildPlatform == "iphoneos": + # + # 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. + # + props["Ice.ThreadPool.Server.StackSize"] = 768 * 1024 return props testcases = [ |