diff options
author | Joe George <joe@zeroc.com> | 2016-08-30 11:37:01 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-08-30 11:38:46 -0400 |
commit | 5b34410c278acab9eb296ce4d24f80e69b6fd6dc (patch) | |
tree | 1aac49502a08970e9f730d6a4ebaa7cf03ee8048 /csharp/test | |
parent | Fixed minor bug with client side user exception check that would occur with 1... (diff) | |
download | ice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.tar.bz2 ice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.tar.xz ice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.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 b81ea91fa02..565c0695adc 100644 --- a/csharp/test/Ice/servantLocator/AllTests.cs +++ b/csharp/test/Ice/servantLocator/AllTests.cs @@ -102,7 +102,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) { |