Bug 1225124 - Mozharness should not fatal exit if symbols URL cannot be found. r=ted

MozReview-Commit-ID: Dr0PFTwfaIv

--HG--
extra : rebase_source : f07bf1c0c5ef90b901831a948ee20980bc337968
This commit is contained in:
Henrik Skupin 2016-03-09 13:14:21 +01:00
parent 49b4d6e62e
commit 2bbecdcec0

View File

@ -202,8 +202,10 @@ class TestingMixin(VirtualenvMixin, BuildbotMixin, ResourceMonitoringMixin,
self.warning("Can't figure out symbols_url from installer_url: %s!" % self.warning("Can't figure out symbols_url from installer_url: %s!" %
self.installer_url) self.installer_url)
else: # If no symbols URL can be determined let minidump_stackwalk query the symbols.
self.fatal("Can't figure out symbols_url without an installer_url!") # As of now this only works for Nightly and release builds.
if not self.symbols_url:
self.warning("No symbols_url found. Let minidump_stackwalk query for symbols.")
return self.symbols_url return self.symbols_url