diff options
Diffstat (limited to 'cpp/test/IceSSL/configuration/AllTests.cpp')
-rw-r--r-- | cpp/test/IceSSL/configuration/AllTests.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpp/test/IceSSL/configuration/AllTests.cpp b/cpp/test/IceSSL/configuration/AllTests.cpp index 3ae154cf3f0..2ad612d4d46 100644 --- a/cpp/test/IceSSL/configuration/AllTests.cpp +++ b/cpp/test/IceSSL/configuration/AllTests.cpp @@ -356,6 +356,12 @@ allTests(const CommunicatorPtr& communicator, const string& testDir) { // Expected. } +#ifdef _WIN32 + catch(const ConnectionLostException&) + { + // Expected. + } +#endif catch(const LocalException&) { test(false); @@ -390,6 +396,12 @@ allTests(const CommunicatorPtr& communicator, const string& testDir) { // Expected. } +#ifdef _WIN32 + catch(const ConnectionLostException&) + { + // Expected. + } +#endif catch(const LocalException&) { test(false); |