From 2dd9a4a85fe5423c0b8a33e5e6afad82ed4665d3 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Wed, 28 Nov 2012 17:59:50 +0100 Subject: Fixed ICE-5027 - IceGrid/simple C# test failure with SSL --- scripts/IceGridAdmin.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts/IceGridAdmin.py') diff --git a/scripts/IceGridAdmin.py b/scripts/IceGridAdmin.py index 2d11c3c5356..e4e83ed632f 100644 --- a/scripts/IceGridAdmin.py +++ b/scripts/IceGridAdmin.py @@ -145,7 +145,11 @@ def iceGridNodePropertiesOverride(): if(value.find(' ') == -1): overrideOptions += ("%s=%s ") % (key, value) else: - overrideOptions += ("%s=\\\"%s\\\" ") % (key, value) + # + # NOTE: We need 2 backslash before the quote to run the + # C# test/IceGrid/simple test with SSL. + # + overrideOptions += ("%s=\\\"%s\\\" ") % (key, value.replace('"', '\\\\\\"')) return overrideOptions -- cgit v1.2.3