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