summaryrefslogtreecommitdiff
path: root/csharp/test/IceSSL/configuration/run.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2015-04-28 22:32:02 +0200
committerBenoit Foucher <benoit@zeroc.com>2015-04-28 22:32:02 +0200
commit8fe52c0cd380c685040d95be59abba478b8fe6a9 (patch)
tree18e0c1ded5f2c150607385f5ca1b0448debb4f60 /csharp/test/IceSSL/configuration/run.py
parentICE-5865 Added license info to pom files (diff)
downloadice-8fe52c0cd380c685040d95be59abba478b8fe6a9.tar.bz2
ice-8fe52c0cd380c685040d95be59abba478b8fe6a9.tar.xz
ice-8fe52c0cd380c685040d95be59abba478b8fe6a9.zip
Fixed ICE-6464 and deprecated various IceSSL properties
Diffstat (limited to 'csharp/test/IceSSL/configuration/run.py')
-rwxr-xr-xcsharp/test/IceSSL/configuration/run.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/csharp/test/IceSSL/configuration/run.py b/csharp/test/IceSSL/configuration/run.py
index 60bb03f8c86..59a97dd0550 100755
--- a/csharp/test/IceSSL/configuration/run.py
+++ b/csharp/test/IceSSL/configuration/run.py
@@ -8,7 +8,7 @@
#
# **********************************************************************
-import os, sys, getopt
+import os, sys, getopt, re
path = [ ".", "..", "../..", "../../..", "../../../.." ]
head = os.path.dirname(sys.argv[0])
@@ -20,6 +20,9 @@ if len(path) == 0:
sys.path.append(os.path.join(path[0], "scripts"))
import TestUtil
+# Filter-out the deprecated property warnings
+TestUtil.clientTraceFilters = [ lambda x: re.sub("-! .* warning: deprecated property: IceSSL.FindCert.*\n", "", x) ]
+TestUtil.serverTraceFilters = [ lambda x: re.sub("-! .* warning: deprecated property: IceSSL.FindCert.*\n", "", x) ]
#
# The drive letter needs to be removed on Windows or loading the SSL
# plug-in will not work.