summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/operations/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-10-26 21:13:30 +0000
committerMarc Laukien <marc@zeroc.com>2004-10-26 21:13:30 +0000
commite1bb249bcb629ce94f69bff9e0ae72b40aeb4d28 (patch)
tree5629f6032f1a9471e8585ab9d73eb5cd4a2b95dd /cpp/test/Ice/operations/Client.cpp
parentWork-around for Sun CC (diff)
downloadice-e1bb249bcb629ce94f69bff9e0ae72b40aeb4d28.tar.bz2
ice-e1bb249bcb629ce94f69bff9e0ae72b40aeb4d28.tar.xz
ice-e1bb249bcb629ce94f69bff9e0ae72b40aeb4d28.zip
more thread-per-connection
Diffstat (limited to 'cpp/test/Ice/operations/Client.cpp')
-rw-r--r--cpp/test/Ice/operations/Client.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/Client.cpp b/cpp/test/Ice/operations/Client.cpp
index d43deacf936..c1d4e1d58e7 100644
--- a/cpp/test/Ice/operations/Client.cpp
+++ b/cpp/test/Ice/operations/Client.cpp
@@ -20,14 +20,19 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
Test::MyClassPrx myClass = allTests(communicator, false);
cout << "testing server shutdown... " << flush;
+ cout << "--- 1 ---" << endl;
myClass->shutdown();
+ cout << "--- 2 ---" << endl;
try
{
+ cout << "--- 3 ---" << endl;
myClass->opVoid();
+ cout << "--- 3.5 ---" << endl;
test(false);
}
catch(const Ice::LocalException&)
{
+ cout << "--- 4 ---" << endl;
cout << "ok" << endl;
}