mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
Bug 1631784 - Do not submit performance data for browsertime profiling tests r=perftest-reviewers,sparky,Bebe
Differential Revision: https://phabricator.services.mozilla.com/D73275
This commit is contained in:
parent
4bb1a50963
commit
faaa2bcd4c
@ -591,8 +591,6 @@ class BrowsertimeResultsHandler(PerftestResultsHandler):
|
|||||||
new_result["subtest_unit"] = "ms"
|
new_result["subtest_unit"] = "ms"
|
||||||
LOG.info("parsed new result: %s" % str(new_result))
|
LOG.info("parsed new result: %s" % str(new_result))
|
||||||
|
|
||||||
# `extra_options` will be populated with Gecko profiling flags in
|
|
||||||
# the future.
|
|
||||||
new_result["extra_options"] = []
|
new_result["extra_options"] = []
|
||||||
if self.no_conditioned_profile:
|
if self.no_conditioned_profile:
|
||||||
new_result["extra_options"].append("nocondprof")
|
new_result["extra_options"].append("nocondprof")
|
||||||
@ -600,6 +598,8 @@ class BrowsertimeResultsHandler(PerftestResultsHandler):
|
|||||||
new_result["extra_options"].append("fission")
|
new_result["extra_options"].append("fission")
|
||||||
if self.live_sites:
|
if self.live_sites:
|
||||||
new_result["extra_options"].append("live")
|
new_result["extra_options"].append("live")
|
||||||
|
if self.gecko_profile:
|
||||||
|
new_result["extra_options"].append("gecko_profile")
|
||||||
|
|
||||||
return new_result
|
return new_result
|
||||||
|
|
||||||
@ -626,11 +626,11 @@ class BrowsertimeResultsHandler(PerftestResultsHandler):
|
|||||||
new_result["subtest_unit"] = test.get("subtest_unit", "ms")
|
new_result["subtest_unit"] = test.get("subtest_unit", "ms")
|
||||||
LOG.info("parsed new result: %s" % str(new_result))
|
LOG.info("parsed new result: %s" % str(new_result))
|
||||||
|
|
||||||
# `extra_options` will also be populated with Gecko profiling flags in
|
|
||||||
# the future.
|
|
||||||
new_result["extra_options"] = []
|
new_result["extra_options"] = []
|
||||||
if self.app != "firefox":
|
if self.app != "firefox":
|
||||||
new_result["extra_options"].append(self.app)
|
new_result["extra_options"].append(self.app)
|
||||||
|
if self.gecko_profile:
|
||||||
|
new_result["extra_options"].append("gecko_profile")
|
||||||
|
|
||||||
return new_result
|
return new_result
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user