diff options
Diffstat (limited to 'scripts/tests/Ice/objects.py')
-rw-r--r-- | scripts/tests/Ice/objects.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/tests/Ice/objects.py b/scripts/tests/Ice/objects.py index fe972e7d547..70ce1b8eba0 100644 --- a/scripts/tests/Ice/objects.py +++ b/scripts/tests/Ice/objects.py @@ -20,6 +20,13 @@ class ObjectClientServerTestCase(ClientServerTestCase): # test on arm64 devices with a debug Ice libraries which require lots of stack space. # props["Ice.ThreadPool.Server.StackSize"] = 768 * 1024 + elif current.config.buildPlatform == "ppc": + # + # The AIX ppc default stack size is too small + # + props["Ice.ThreadPool.Server.StackSize"] = 256 * 1024 + elif current.config.buildPlatform == "ppc64": + props["Ice.ThreadPool.Server.StackSize"] = 768 * 1024 return props testcases = [ |