summaryrefslogtreecommitdiff
path: root/java/test/Ice/proxy/Client.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2007-05-14 03:54:35 +0000
committerMatthew Newhook <matthew@zeroc.com>2007-05-14 03:54:35 +0000
commit79e3134fdd352d7edde573b2baa93602e859360b (patch)
tree230db9ea999ed86f0c88619ab917608e4f4729f0 /java/test/Ice/proxy/Client.java
parentadded timeout & proxy test. Cleaned up operations test. (diff)
downloadice-79e3134fdd352d7edde573b2baa93602e859360b.tar.bz2
ice-79e3134fdd352d7edde573b2baa93602e859360b.tar.xz
ice-79e3134fdd352d7edde573b2baa93602e859360b.zip
more test cleanup (operations, proxy, timeout).
Diffstat (limited to 'java/test/Ice/proxy/Client.java')
-rw-r--r--java/test/Ice/proxy/Client.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/java/test/Ice/proxy/Client.java b/java/test/Ice/proxy/Client.java
index cfe7f4e0608..fc23675f2de 100644
--- a/java/test/Ice/proxy/Client.java
+++ b/java/test/Ice/proxy/Client.java
@@ -25,34 +25,10 @@ public class Client
try
{
- //
- // In this test, we need at least two threads in the
- // client side thread pool for nested AMI.
- //
Ice.StringSeqHolder argsH = new Ice.StringSeqHolder(args);
Ice.InitializationData initData = new Ice.InitializationData();
initData.properties = Ice.Util.createProperties(argsH);
- initData.properties.setProperty("Ice.ThreadPool.Client.Size", "2");
- initData.properties.setProperty("Ice.ThreadPool.Client.SizeWarn", "0");
- //
- // We must set MessageSizeMax to an explicit values,
- // because we run tests to check whether
- // Ice.MemoryLimitException is raised as expected.
- //
- initData.properties.setProperty("Ice.MessageSizeMax", "100");
-
- //
- // We don't want connection warnings because of the timeout test.
- //
- initData.properties.setProperty("Ice.Warn.Connections", "0");
-
- //
- // Use a faster connection monitor timeout to test AMI
- // timeouts.
- //
- initData.properties.setProperty("Ice.MonitorConnections", "1");
-
communicator = Ice.Util.initialize(argsH, initData);
status = run(argsH.value, communicator);
}