author | Geoff Brown <gbrown@mozilla.com> |
Tue, 23 Apr 2013 10:44:59 -0600 | |
changeset 140593 | 25d6b99f826f3aeb81a6e4bc6de3571f3dd28c3c |
parent 140592 | 4c26b1674a6e7d15c916d807d441b31d0b80d73b |
child 140594 | 89701e65d892d39435dced49b5907a0d46806507 |
push id | 2579 |
push user | akeybl@mozilla.com |
push date | Mon, 24 Jun 2013 18:52:47 +0000 |
treeherder | mozilla-beta@b69b7de8a05a [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jmaher |
bugs | 863752 |
milestone | 23.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/xpcshell/remotexpcshelltests.py +++ b/testing/xpcshell/remotexpcshelltests.py @@ -66,17 +66,17 @@ class XPCShellRemote(xpcshell.XPCShellTe self.appRoot = None packageName = None if self.options.localAPK: try: packageName = subprocess.check_output(["unzip", "-p", self.options.localAPK, "package-name.txt"]) if packageName: self.appRoot = self.device.getAppRoot(packageName.strip()) except Exception as detail: - print "unable to determine app root: " + detail + print "unable to determine app root: " + str(detail) pass return None def remoteJoin(self, path1, path2): joined = os.path.join(path1, path2) joined = joined.replace('\\', '/') return joined