diff options
Diffstat (limited to 'cpp/test/IceGrid/simple/AllTests.cpp')
-rw-r--r-- | cpp/test/IceGrid/simple/AllTests.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/IceGrid/simple/AllTests.cpp b/cpp/test/IceGrid/simple/AllTests.cpp index 30c35817cfe..797d7ff96f7 100644 --- a/cpp/test/IceGrid/simple/AllTests.cpp +++ b/cpp/test/IceGrid/simple/AllTests.cpp @@ -162,6 +162,9 @@ allTestsWithDeploy(const Ice::CommunicatorPtr& communicator) cout << "testing whether server is still reachable... " << flush; try { +#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) + IceUtil::DummyBCC dummy; +#endif obj = TestIntfPrx::checkedCast(base); test(false); } @@ -170,6 +173,9 @@ allTestsWithDeploy(const Ice::CommunicatorPtr& communicator) } try { +#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) + IceUtil::DummyBCC dummy; +#endif obj2 = TestIntfPrx::checkedCast(base2); test(false); } |