summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2004-03-02 20:23:20 +0000
committerBenoit Foucher <benoit@zeroc.com>2004-03-02 20:23:20 +0000
commit1a7547c062e01831228174fdef4559d77c1685eb (patch)
treeeaa6fcb0e4cdc68eb345561dab81b07334a7a9e3
parentsync fix (diff)
downloadice-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.cpp8
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;
}