summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/proxy/Client.cpp
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 /cpp/test/Ice/proxy/Client.cpp
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 'cpp/test/Ice/proxy/Client.cpp')
-rw-r--r--cpp/test/Ice/proxy/Client.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/cpp/test/Ice/proxy/Client.cpp b/cpp/test/Ice/proxy/Client.cpp
index 5edff282efd..b67d30c5837 100644
--- a/cpp/test/Ice/proxy/Client.cpp
+++ b/cpp/test/Ice/proxy/Client.cpp
@@ -34,26 +34,8 @@ main(int argc, char* argv[])
try
{
- //
- // In this test, we need at least two threads in the
- // client side thread pool for nested AMI.
- //
Ice::InitializationData initData;
initData.properties = Ice::createProperties(argc, argv);
- initData.properties->setProperty("Ice.ThreadPool.Client.Size", "2");
- initData.properties->setProperty("Ice.ThreadPool.Client.SizeWarn", "0");
-
- //
- // 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::initialize(argc, argv, initData);
status = run(argc, argv, communicator, initData);
}