diff options
Diffstat (limited to 'cpp/test/Ice/retry/Server.cpp')
-rw-r--r-- | cpp/test/Ice/retry/Server.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/test/Ice/retry/Server.cpp b/cpp/test/Ice/retry/Server.cpp index 5cf27927c15..fda5cd33cdd 100644 --- a/cpp/test/Ice/retry/Server.cpp +++ b/cpp/test/Ice/retry/Server.cpp @@ -8,8 +8,11 @@ // ********************************************************************** #include <Ice/Ice.h> +#include <TestCommon.h> #include <TestI.h> +DEFINE_TEST("server") + using namespace std; int @@ -20,6 +23,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) Ice::ObjectPtr object = new RetryI; adapter->add(object, communicator->stringToIdentity("retry")); adapter->activate(); + TEST_READY communicator->waitForShutdown(); return EXIT_SUCCESS; } |