diff options
author | Joe George <joe@zeroc.com> | 2016-07-27 14:36:18 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-07-27 14:36:18 -0400 |
commit | f494f16d6c02df4fe06bf9854cc45fb4b2a93b48 (patch) | |
tree | 9a3099465f6d2528cd6686c9802e579234623b35 /csharp/test | |
parent | C++11 CertificateVerifier and PasswordPrompt (diff) | |
download | ice-f494f16d6c02df4fe06bf9854cc45fb4b2a93b48.tar.bz2 ice-f494f16d6c02df4fe06bf9854cc45fb4b2a93b48.tar.xz ice-f494f16d6c02df4fe06bf9854cc45fb4b2a93b48.zip |
ICE-7242 - Cross test updates
Diffstat (limited to 'csharp/test')
-rw-r--r-- | csharp/test/Ice/servantLocator/AllTests.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/csharp/test/Ice/servantLocator/AllTests.cs b/csharp/test/Ice/servantLocator/AllTests.cs index f52a592e4de..add7e4d99d5 100644 --- a/csharp/test/Ice/servantLocator/AllTests.cs +++ b/csharp/test/Ice/servantLocator/AllTests.cs @@ -98,7 +98,8 @@ public class AllTests : TestCommon.TestApp } catch(UnknownLocalException ex) { - test(ex.unknown.IndexOf("Ice::SocketException") >= 0); + test(ex.unknown.IndexOf("Ice::SocketException") >= 0 || + ex.unknown.IndexOf("Ice.SocketException") >= 0); } catch(System.Exception) { |