summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/info/Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/info/Server.cpp')
-rw-r--r--cpp/test/Ice/info/Server.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/test/Ice/info/Server.cpp b/cpp/test/Ice/info/Server.cpp
index 0db8c76f43a..07e6d2c2a39 100644
--- a/cpp/test/Ice/info/Server.cpp
+++ b/cpp/test/Ice/info/Server.cpp
@@ -8,8 +8,11 @@
// **********************************************************************
#include <Ice/Ice.h>
+#include <TestCommon.h>
#include <TestI.h>
+DEFINE_TEST("server");
+
using namespace std;
int
@@ -19,7 +22,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter");
adapter->add(new TestI, communicator->stringToIdentity("test"));
adapter->activate();
-
+ TEST_READY
communicator->waitForShutdown();
return EXIT_SUCCESS;
}