summaryrefslogtreecommitdiff
path: root/scripts/IceGridAdmin.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/IceGridAdmin.py')
-rw-r--r--scripts/IceGridAdmin.py6
1 files changed, 5 insertions, 1 deletions
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