diff options
author | Jose <jose@zeroc.com> | 2012-11-20 23:11:10 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-11-20 23:11:10 +0100 |
commit | 792921a33891813dbf76478795adddda27668a2d (patch) | |
tree | 24d446aa5a370a3d0d9b012eeaf332f21a8b38fe /scripts/TestUtil.py | |
parent | Minor test failure fixes (diff) | |
download | ice-792921a33891813dbf76478795adddda27668a2d.tar.bz2 ice-792921a33891813dbf76478795adddda27668a2d.tar.xz ice-792921a33891813dbf76478795adddda27668a2d.zip |
Silverlight reviews & updates
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 0feae226f23..2f431b3231f 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -897,9 +897,9 @@ def getCommandLine(exe, config, options = ""): elif config.silverlight and config.lang == "cs" and config.type == "client": xap = "%s.xap" % os.path.basename(os.getcwd()) if os.environ.get("PROCESSOR_ARCHITECTURE") == "AMD64" or os.environ.get("PROCESSOR_ARCHITEW6432") == "": - output.write("%s (x86)\Microsoft Silverlight\sllauncher.exe /emulate:%s" % ( os.environ["PROGRAMFILES"], xap)) + output.write('"%s (x86)\Microsoft Silverlight\sllauncher.exe" /emulate:%s ' % ( os.environ["PROGRAMFILES"], xap)) else: - output.write("%s\Microsoft Silverlight\sllauncher.exe /emulate:%s" % ( os.environ["PROGRAMFILES"], xapPath)) + output.write('"%s\Microsoft Silverlight\sllauncher.exe" /emulate:%s ' % ( os.environ["PROGRAMFILES"], xap)) elif config.lang == "java" or config.lang == "javae": output.write("%s -ea " % javaCmd) if isSolaris() and config.x64: |