summaryrefslogtreecommitdiff
path: root/php/config/TestUtil.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2004-02-18 20:31:16 +0000
committerMark Spruiell <mes@zeroc.com>2004-02-18 20:31:16 +0000
commita5de48c4be2184c0cf35a6ee1f25274b67f30073 (patch)
tree99f7c699c23ba99ce2f5b53c11656a0197721aa7 /php/config/TestUtil.py
parentminor edits (diff)
downloadice-a5de48c4be2184c0cf35a6ee1f25274b67f30073.tar.bz2
ice-a5de48c4be2184c0cf35a6ee1f25274b67f30073.tar.xz
ice-a5de48c4be2184c0cf35a6ee1f25274b67f30073.zip
Update for PHP5b4:
- PHP no longer changes identifiers to lowercase - Use new convenience functions for calling user methods - Use new exception mechanism - Change "implements" to "extends" for interface inheritance - Change handleDestroy to handleFreeStorage for internal objects
Diffstat (limited to 'php/config/TestUtil.py')
-rw-r--r--php/config/TestUtil.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/php/config/TestUtil.py b/php/config/TestUtil.py
index d0a91c2f9cb..e1a8a939c2c 100644
--- a/php/config/TestUtil.py
+++ b/php/config/TestUtil.py
@@ -193,8 +193,10 @@ if host != "":
else:
defaultHost = ""
-commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.ThreadPool.Server.Size=3" + \
- " --Ice.Warn.Connections "
+commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.NullHandleAbort" + \
+ " --Ice.Warn.Connections --Ice.ServerIdleTime=30" + \
+ " --Ice.ThreadPool.Server.Size=1 --Ice.ThreadPool.Server.SizeMax=3" + \
+ " --Ice.ThreadPool.Server.SizeWarn=0"
clientOptions = clientProtocol + defaultHost
serverOptions = serverProtocol + defaultHost + commonServerOptions