Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
merged from default
Browse files Browse the repository at this point in the history
changeset:   2114:221982fae285
tag:         tip
parent:      2111:a3c761a3743c
user:        Chris AtLee <catlee@mozilla.com>
date:        Thu Aug 11 10:56:14 2011 -0400
summary:     Bug 561754: don't use stackwalk cgi if we're not downloading symbols. r=bhearsum

--HG--
branch : production-0.8
  • Loading branch information
Chris AtLee committed Aug 11, 2011
2 parents 9797849 + 6df34d2 commit f13c062
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions process/factory.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6438,7 +6438,7 @@ def __init__(self, platform, test_suites, env, productName='firefox',
self.chunkByDir = chunkByDir self.chunkByDir = chunkByDir


self.env = MozillaEnvironments['%s-unittest' % platform].copy() self.env = MozillaEnvironments['%s-unittest' % platform].copy()
if stackwalk_cgi: if stackwalk_cgi and kwargs.get('downloadSymbols'):
self.env['MINIDUMP_STACKWALK_CGI'] = stackwalk_cgi self.env['MINIDUMP_STACKWALK_CGI'] = stackwalk_cgi
else: else:
self.env['MINIDUMP_STACKWALK'] = getPlatformMinidumpPath(platform) self.env['MINIDUMP_STACKWALK'] = getPlatformMinidumpPath(platform)
Expand All @@ -6461,7 +6461,7 @@ def addSetupSteps(self):


def addRunTestSteps(self): def addRunTestSteps(self):
# Run them! # Run them!
if self.stackwalk_cgi: if self.stackwalk_cgi and self.downloadSymbols:
symbols_path = '%(symbols_url)s' symbols_path = '%(symbols_url)s'
else: else:
symbols_path = 'symbols' symbols_path = 'symbols'
Expand Down

0 comments on commit f13c062

Please sign in to comment.