From dfef9c7cf9ee1d205aaa76cb2c018741a0a40bd8 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Tue, 18 Nov 2014 16:24:02 +0100 Subject: Fixes for ICE-5910: merged makecerts.py with makewinrtcerts.py, removed WinRT certs --- scripts/TestUtil.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'scripts/TestUtil.py') diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 0efb2e00a95..b6abdeb6ba3 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -881,14 +881,10 @@ def getCommandLineProperties(exe, config): if config.protocol == "ssl" or config.protocol == "wss": sslenv = {} sslenv["icesslcs"] = quoteArgument("\\\"" + os.path.join(getIceDir("cs"), "Assemblies", "IceSSL.dll") + "\\\"") - if winrt: - sslenv["certsdir"] = quoteArgument(os.path.abspath(os.path.join(toplevel, "certs", "winrt"))) - sslenv["verifyPeer"] = "0" - elif config.protocol == "wss": - sslenv["certsdir"] = quoteArgument(os.path.abspath(os.path.join(toplevel, "certs"))) + sslenv["certsdir"] = quoteArgument(os.path.abspath(os.path.join(toplevel, "certs"))) + if winrt or config.protocol == "wss": sslenv["verifyPeer"] = "0" else: - sslenv["certsdir"] = quoteArgument(os.path.abspath(os.path.join(toplevel, "certs"))) sslenv["verifyPeer"] = "2" components.append(sslConfigTree[config.lang]["plugin"] % sslenv) components.append(sslConfigTree[config.lang][config.type] % sslenv) -- cgit v1.2.3