Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Unified Diff: scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py

Issue 2270563005: Clean up some discrepancies in the perf recipe configs (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py b/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
index 6d451bfe68d9f31dbd807ba45f756e28877ad43d..f7f88bc25d33defe58857a0e521f4648340fe7e3 100644
--- a/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
+++ b/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
@@ -31,17 +31,14 @@ def tryserver_chromium_perf(c):
def _AddBuildSpec(name, platform, target_bits=64):
+ # We run sizes with no perf_id for perf tryjobs. http://crbug.com/610772
SPEC['builders'][name] = chromium_perf.BuildSpec(
'tryserver_chromium_perf', None, platform, target_bits)
def _AddTestSpec(name, platform, target_bits=64):
- # TODO(dtu): Change this to TestSpec after try job builds are all offloaded
- # to builders.
- spec = chromium_perf.BuildSpec(
- 'tryserver_chromium_perf', None, platform, target_bits)
- del spec['tests']
- SPEC['builders'][name] = spec
+ SPEC['builders'][name] = chromium_perf.TestSpec(
+ 'tryserver_chromium_perf', platform, target_bits)
_AddBuildSpec('win_perf_bisect_builder', 'win', target_bits=32)

Powered by Google App Engine
This is Rietveld 408576698