summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-12-23 22:23:38 +0100
committerJose <jose@zeroc.com>2016-12-23 22:23:38 +0100
commit606410397c0ec7ff97966d38d16f9b55b1cf6d7a (patch)
tree87b2186ecc9b78ee73ed5420008c5cc8ed24c90f /scripts/Util.py
parentFix to run UWP tests with release packages (diff)
downloadice-606410397c0ec7ff97966d38d16f9b55b1cf6d7a.tar.bz2
ice-606410397c0ec7ff97966d38d16f9b55b1cf6d7a.tar.xz
ice-606410397c0ec7ff97966d38d16f9b55b1cf6d7a.zip
Another fix for UWP tests
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index 873d6de1a5e..70320c39597 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -1998,7 +1998,7 @@ class UWPProcessController(RemoteProcessController):
self.packageFullName = "{0}_1.0.0.0_{1}__3qjctahehqazm".format(
self.name, "x86" if platform == "Win32" else platform)
- prefix = "controller_1.0.0.0_{0}{1}".format(platform, "_{0}".format(config if config == "Debug" else ""))
+ prefix = "controller_1.0.0.0_{0}{1}".format(platform, "{0}_".format(config) if config == "Debug" else "")
package = os.path.join(toplevel, "cpp", "msbuild", "AppPackages", "controller",
"{0}_Test".format(prefix), "{0}.appx".format(prefix))