diff options
Diffstat (limited to 'cpp/test/Ice/dispatcher/Server.cpp')
-rw-r--r-- | cpp/test/Ice/dispatcher/Server.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp/test/Ice/dispatcher/Server.cpp b/cpp/test/Ice/dispatcher/Server.cpp index 517103c3898..e517301982b 100644 --- a/cpp/test/Ice/dispatcher/Server.cpp +++ b/cpp/test/Ice/dispatcher/Server.cpp @@ -9,8 +9,11 @@ #include <Ice/Ice.h> #include <TestI.h> +#include <TestCommon.h> #include <Dispatcher.h> +DEFINE_TEST("server") + using namespace std; int @@ -30,7 +33,9 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) adapter2->add(testController, communicator->stringToIdentity("testController")); adapter2->activate(); - + + TEST_READY + communicator->waitForShutdown(); return EXIT_SUCCESS; } |