diff options
author | Marc Laukien <marc@zeroc.com> | 2001-08-25 01:37:09 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-08-25 01:37:09 +0000 |
commit | a60f5311d60553dea75bffa5d3b38ec6b6eeee35 (patch) | |
tree | a4bbaa39b50f85a15b59b1a802a21a2c08a3d487 /cpp/test/IcePack/simple/Client.cpp | |
parent | ThreadPool fixes; Win fixes (diff) | |
download | ice-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.cpp | 8 |
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; } |