summaryrefslogtreecommitdiff
path: root/cpp/test/IcePack/simple/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-08-25 01:37:09 +0000
committerMarc Laukien <marc@zeroc.com>2001-08-25 01:37:09 +0000
commita60f5311d60553dea75bffa5d3b38ec6b6eeee35 (patch)
treea4bbaa39b50f85a15b59b1a802a21a2c08a3d487 /cpp/test/IcePack/simple/Client.cpp
parentThreadPool fixes; Win fixes (diff)
downloadice-a60f5311d60553dea75bffa5d3b38ec6b6eeee35.tar.bz2
ice-a60f5311d60553dea75bffa5d3b38ec6b6eeee35.tar.xz
ice-a60f5311d60553dea75bffa5d3b38ec6b6eeee35.zip
fixes
Diffstat (limited to 'cpp/test/IcePack/simple/Client.cpp')
-rw-r--r--cpp/test/IcePack/simple/Client.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/test/IcePack/simple/Client.cpp b/cpp/test/IcePack/simple/Client.cpp
index 6a73321427d..3ae77a6499d 100644
--- a/cpp/test/IcePack/simple/Client.cpp
+++ b/cpp/test/IcePack/simple/Client.cpp
@@ -18,8 +18,12 @@ int
run(int argc, char* argv[], Ice::CommunicatorPtr communicator)
{
TestPrx allTests(Ice::CommunicatorPtr);
- TestPrx test = allTests(communicator);
- test->shutdown();
+ TestPrx obj = allTests(communicator);
+
+ cout << "shutting down server... " << flush;
+ obj->shutdown();
+ cout << "ok" << endl;
+
return EXIT_SUCCESS;
}