summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/adapterDeactivation/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-12-14 22:19:03 +0000
committerMarc Laukien <marc@zeroc.com>2002-12-14 22:19:03 +0000
commita41bb120db0ccdea5eea58e26bd30eddaff40877 (patch)
tree955f720fb895739a61764d56234ac4a9595a1441 /cpp/test/Ice/adapterDeactivation/Client.cpp
parentsome fixes (diff)
downloadice-a41bb120db0ccdea5eea58e26bd30eddaff40877.tar.bz2
ice-a41bb120db0ccdea5eea58e26bd30eddaff40877.tar.xz
ice-a41bb120db0ccdea5eea58e26bd30eddaff40877.zip
complete shutdown/deactivate re-implementation
Diffstat (limited to 'cpp/test/Ice/adapterDeactivation/Client.cpp')
-rw-r--r--cpp/test/Ice/adapterDeactivation/Client.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/cpp/test/Ice/adapterDeactivation/Client.cpp b/cpp/test/Ice/adapterDeactivation/Client.cpp
index 5f5f7753831..35f920af47e 100644
--- a/cpp/test/Ice/adapterDeactivation/Client.cpp
+++ b/cpp/test/Ice/adapterDeactivation/Client.cpp
@@ -38,17 +38,5 @@ TestClient::run(int argc, char* argv[])
{
TestPrx allTests(const CommunicatorPtr&);
TestPrx obj = allTests(communicator());
-
- cout << "testing whether server is gone... " << flush;
- try
- {
- obj->ice_ping();
- test(false);
- }
- catch(const LocalException&)
- {
- cout << "ok" << endl;
- }
-
return EXIT_SUCCESS;
}