diff options
Diffstat (limited to 'cpp/test/Ice/exceptions/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/AllTests.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/test/Ice/exceptions/AllTests.cpp b/cpp/test/Ice/exceptions/AllTests.cpp index a6a12ea380b..9940da22f57 100644 --- a/cpp/test/Ice/exceptions/AllTests.cpp +++ b/cpp/test/Ice/exceptions/AllTests.cpp @@ -404,6 +404,8 @@ endsWith(const string& s, const string& findme) ThrowerPrxPtr allTests(const Ice::CommunicatorPtr& communicator) { + const string protocol = communicator->getProperties()->getProperty("Ice.Default.Protocol"); + cout << "testing ice_print()/what()... " << flush; { A a; @@ -963,7 +965,7 @@ allTests(const Ice::CommunicatorPtr& communicator) cout << "ok" << endl; } - if(thrower->ice_getConnection()) + if(thrower->ice_getConnection() && protocol != "bt") { cout << "testing memory limit marshal exception..." << flush; try |