summaryrefslogtreecommitdiff
path: root/cpp/test/IcePack/simple/Client.cpp
diff options
context:
space:
mode:
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;
}