diff options
author | Michi Henning <michi@zeroc.com> | 2004-08-18 05:46:31 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-08-18 05:46:31 +0000 |
commit | ff46d202cb7da992c04099c54fcf141cd2812862 (patch) | |
tree | c725c27a58b77bea30ffe99a0edf71eab5943ffb /cs/config/TestUtil.py | |
parent | fixes (diff) | |
download | ice-ff46d202cb7da992c04099c54fcf141cd2812862.tar.bz2 ice-ff46d202cb7da992c04099c54fcf141cd2812862.tar.xz ice-ff46d202cb7da992c04099c54fcf141cd2812862.zip |
Glacier test now runs.
Diffstat (limited to 'cs/config/TestUtil.py')
-rw-r--r-- | cs/config/TestUtil.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cs/config/TestUtil.py b/cs/config/TestUtil.py index 3f8dfde2538..2c2aabbdf4d 100644 --- a/cs/config/TestUtil.py +++ b/cs/config/TestUtil.py @@ -26,13 +26,14 @@ compress = 0 # # Set the host to the host name the test servers are running on. If -# not set, Ice will try to find out the IP address for the +# set to the empty string, Ice will try to find out the IP address for the # hostname. If you DNS isn't set up propertly, you should therefore # use "localhost". # #host = "someotherhost" -host = "localhost" +#host = "localhost" +host = "" # # Don't change anything below this line! @@ -68,7 +69,7 @@ def killServers(): # TODO: Michi: Not sure why exit(1) was here. This means that, when # we run the test suite with allTests.py under Cygwin, the first sub-test that # calls killServers will return non-zero exit status and, therefore, - # terminate allTests.py, so the subsequence tests are never run. + # terminate allTests.py, so the subsequent tests are never run. # #sys.exit(1) @@ -176,7 +177,7 @@ else: commonClientOptions = " --Ice.NullHandleAbort --Ice.Warn.Connections" commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.NullHandleAbort" + \ - " --Ice.Warn.Connections --Ice.ServerIdleTime=30" + \ + " --Ice.Warn.Connections --Ice.ServerIdleTime=10" + \ " --Ice.ThreadPool.Server.Size=1 --Ice.ThreadPool.Server.SizeMax=3" + \ " --Ice.ThreadPool.Server.SizeWarn=0" |