diff options
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 0929e570c09..d3a1039c58e 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -895,7 +895,7 @@ def getCommandLine(exe, config, options = ""): elif config.lang == "rb" and config.type == "client": output.write("ruby '" + exe + "' ") elif config.silverlight and config.lang == "cs" and config.type == "client": - xap = "%s.xap" % os.path.basename(os.getcwd()) + xap = "obj/sl/%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)) else: |