Bug 827504 - Don't install specialpowers for crashtests on B2G (it already is), r=jgriffin DONTBUILD a=NPOTB,test-only

This commit is contained in:
Andrew Halberstadt 2013-01-10 09:49:12 -05:00
parent 54135b56d1
commit 072750a8a3

View File

@ -69,6 +69,11 @@ class B2GRemoteAutomation(Automation):
def setRemoteLog(self, logfile):
self._remoteLog = logfile
def installExtension(self, extensionSource, profileDir, extensionID=None):
# Bug 827504 - installing special-powers extension separately causes problems in B2G
if extensionID != "special-powers@mozilla.org":
Automation.installExtension(self, extensionSource, profileDir, extensionID)
# Set up what we need for the remote environment
def environment(self, env=None, xrePath=None, crashreporter=True):
# Because we are running remote, we don't want to mimic the local env