summaryrefslogtreecommitdiff
path: root/cpp/test/Glacier2/sessionControl/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Glacier2/sessionControl/Client.cpp')
-rw-r--r--cpp/test/Glacier2/sessionControl/Client.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/Glacier2/sessionControl/Client.cpp b/cpp/test/Glacier2/sessionControl/Client.cpp
index aae0cdaecce..7d78af40274 100644
--- a/cpp/test/Glacier2/sessionControl/Client.cpp
+++ b/cpp/test/Glacier2/sessionControl/Client.cpp
@@ -79,6 +79,9 @@ SessionControlClient::run(int argc, char* argv[])
cout << "testing create exceptions... " << flush;
try
{
+#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600)
+ IceUtil::DummyBCC dummy;
+#endif
router->createSession("rejectme", "abc123");
test(false);
}
@@ -87,6 +90,9 @@ SessionControlClient::run(int argc, char* argv[])
}
try
{
+#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600)
+ IceUtil::DummyBCC dummy;
+#endif
router->createSession("localexception", "abc123");
test(false);
}