diff options
author | Benoit Foucher <benoit@zeroc.com> | 2004-03-02 20:23:20 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2004-03-02 20:23:20 +0000 |
commit | 1a7547c062e01831228174fdef4559d77c1685eb (patch) | |
tree | eaa6fcb0e4cdc68eb345561dab81b07334a7a9e3 | |
parent | sync fix (diff) | |
download | ice-1a7547c062e01831228174fdef4559d77c1685eb.tar.bz2 ice-1a7547c062e01831228174fdef4559d77c1685eb.tar.xz ice-1a7547c062e01831228174fdef4559d77c1685eb.zip |
Don't shutdown the server explicitly if it's deployed
-rw-r--r-- | cpp/test/IcePack/simple/Client.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/IcePack/simple/Client.cpp b/cpp/test/IcePack/simple/Client.cpp index 8803469df60..858c89dd9d1 100644 --- a/cpp/test/IcePack/simple/Client.cpp +++ b/cpp/test/IcePack/simple/Client.cpp @@ -43,11 +43,11 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { TestPrx allTestsWithDeploy(const Ice::CommunicatorPtr&); obj = allTestsWithDeploy(communicator); - } - cout << "shutting down server... " << flush; - obj->shutdown(); - cout << "ok" << endl; + cout << "shutting down server... " << flush; + obj->shutdown(); + cout << "ok" << endl; + } return EXIT_SUCCESS; } |