From 69d1d16d4e84fb00178b2cba02a6ea5d0adc05e2 Mon Sep 17 00:00:00 2001 From: Geoff Brown Date: Fri, 4 May 2012 22:46:36 -0400 Subject: [PATCH] Bug 749771 - Set HOME directory for Android xpcshell tests. r=jmaher --- testing/xpcshell/remotexpcshelltests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/xpcshell/remotexpcshelltests.py b/testing/xpcshell/remotexpcshelltests.py index b40ba98405b7..194f78b74e51 100644 --- a/testing/xpcshell/remotexpcshelltests.py +++ b/testing/xpcshell/remotexpcshelltests.py @@ -228,6 +228,7 @@ class XPCShellRemote(xpcshell.XPCShellTests, object): env["GRE_HOME"]=self.appRoot env["XPCSHELL_TEST_PROFILE_DIR"]=self.profileDir env["TMPDIR"]=self.remoteTmpDir + env["HOME"]=self.profileDir outputFile = "xpcshelloutput" f = open(outputFile, "w+") self.shellReturnCode = self.device.shell(cmd, f, cwd=self.remoteHere, env=env)