diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-04-05 13:43:03 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-04-05 13:43:03 +0000 |
commit | 33882b59b2ddd0647a17e3a06edf86b84299504d (patch) | |
tree | d1ee4aa164b836facf7a7d5d600b3f3e2b59325a /cpp | |
parent | Win32 fixes (diff) | |
download | ice-33882b59b2ddd0647a17e3a06edf86b84299504d.tar.bz2 ice-33882b59b2ddd0647a17e3a06edf86b84299504d.tar.xz ice-33882b59b2ddd0647a17e3a06edf86b84299504d.zip |
more Windows fixes
Diffstat (limited to '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); |