diff options
Diffstat (limited to 'cpp/test/Ice/invoke/Server.cpp')
-rw-r--r-- | cpp/test/Ice/invoke/Server.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/test/Ice/invoke/Server.cpp b/cpp/test/Ice/invoke/Server.cpp index 5a7af226c21..a82bf1256d2 100644 --- a/cpp/test/Ice/invoke/Server.cpp +++ b/cpp/test/Ice/invoke/Server.cpp @@ -8,9 +8,12 @@ // ********************************************************************** #include <Ice/Ice.h> +#include <TestCommon.h> #include <IceUtil/Options.h> #include <BlobjectI.h> +DEFINE_TEST("server") + using namespace std; class ServantLocatorI : public Ice::ServantLocator @@ -90,6 +93,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) adapter->addServantLocator(new ServantLocatorI(array, async), ""); adapter->activate(); + TEST_READY + communicator->waitForShutdown(); return EXIT_SUCCESS; } |