summaryrefslogtreecommitdiff
path: root/cpp/test
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-11-29 11:56:58 +0100
committerBenoit Foucher <benoit@zeroc.com>2016-11-29 11:56:58 +0100
commit157a2166a9cdd989e025a883d7d0c21f4320e55c (patch)
tree2b5f76a5988b5153df41d3b071535f42afd1c34b /cpp/test
parentFixed bug which prevented IceBox to find services (diff)
downloadice-157a2166a9cdd989e025a883d7d0c21f4320e55c.tar.bz2
ice-157a2166a9cdd989e025a883d7d0c21f4320e55c.tar.xz
ice-157a2166a9cdd989e025a883d7d0c21f4320e55c.zip
IceGrid/noRestartUpdate failure, print out the reason of the failure
Diffstat (limited to 'cpp/test')
-rw-r--r--cpp/test/IceGrid/noRestartUpdate/AllTests.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp b/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp
index 3a6c21bafbc..8f55db3e7b6 100644
--- a/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp
+++ b/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp
@@ -324,8 +324,9 @@ allTests(const Ice::CommunicatorPtr& communicator)
{
admin->updateApplicationWithoutRestart(update);
}
- catch(const DeploymentException&)
+ catch(const DeploymentException& ex)
{
+ cerr << ex.reason << endl;
test(false);
}
catch(const Ice::Exception& ex)