diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-30 16:53:02 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-30 16:53:02 +0200 |
commit | 1662076d5853392755ce334913326d7a5290662a (patch) | |
tree | 0e7d6dfbe7603ccc110f1b68d59c9854f2bf1748 /scripts/tests | |
parent | Fix (ICE-8186) - msbuild rebuilds to often the C# sources (diff) | |
download | ice-1662076d5853392755ce334913326d7a5290662a.tar.bz2 ice-1662076d5853392755ce334913326d7a5290662a.tar.xz ice-1662076d5853392755ce334913326d7a5290662a.zip |
Fixed ICE-8194 - Ice/objects crash with Ice debug library
Diffstat (limited to 'scripts/tests')
-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 = [ |