diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/test/IceGrid/update/AllTests.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/test/IceGrid/update/AllTests.cpp b/cpp/test/IceGrid/update/AllTests.cpp index b9942e227ca..301d7ad036b 100644 --- a/cpp/test/IceGrid/update/AllTests.cpp +++ b/cpp/test/IceGrid/update/AllTests.cpp @@ -1193,6 +1193,11 @@ allTests(const Ice::CommunicatorPtr& communicator) admin->startServer("Server"); test(admin->getServerState("Server") == Active); } + catch(const ServerStartException& ex) + { + cerr << ex << "\nreason = " << ex.reason << endl; + test(false); + } catch(const Ice::Exception& ex) { cerr << ex << endl; |