From 219dad47cb45893ea92b5c5056dde237d3114869 Mon Sep 17 00:00:00 2001 From: Geoff Brown Date: Fri, 16 Nov 2012 07:43:55 -0700 Subject: [PATCH] Bug 812191 - Respect --noSetup in remote xpcshell tests with xpcw wrapper; r=jmaher, DONTBUILD --- testing/xpcshell/remotexpcshelltests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/xpcshell/remotexpcshelltests.py b/testing/xpcshell/remotexpcshelltests.py index adb62093198..939599531ec 100644 --- a/testing/xpcshell/remotexpcshelltests.py +++ b/testing/xpcshell/remotexpcshelltests.py @@ -262,7 +262,8 @@ class XPCShellRemote(xpcshell.XPCShellTests, object): self.env["XPCSHELL_TEST_PROFILE_DIR"]=self.profileDir self.env["TMPDIR"]=self.remoteTmpDir self.env["HOME"]=self.profileDir - self.pushWrapper() + if self.options.setup: + self.pushWrapper() def launchProcess(self, cmd, stdout, stderr, env, cwd): cmd.insert(1, self.remoteHere)