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

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

Issue 2318413002: Re-add perf-id and results-url. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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/chromium_perf.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py b/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
index 355a41620756a0cc5652885eda9ae9a544c813ef..ee3b0c58e5013f08ac839583683bcef35d44107e 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
@@ -77,7 +77,7 @@ def BuildSpec(config_name, perf_id, platform, target_bits):
return spec
-def TestSpec(config_name, platform, target_bits,
+def TestSpec(config_name, perf_id, platform, target_bits,
parent_buildername=None, tests=None):
spec = _BaseSpec(
bot_type='tester',
@@ -90,6 +90,8 @@ def TestSpec(config_name, platform, target_bits,
if not parent_buildername:
parent_buildername = builders[platform][target_bits]
spec['parent_buildername'] = parent_buildername
+ spec['perf-id'] = perf_id
+ spec['results-url'] = 'https://chromeperf.appspot.com'
spec['test_generators'] = [steps.generate_script]
return spec
@@ -117,7 +119,7 @@ def _AddTestSpec(name, perf_id, platform, target_bits=64,
perf_id, platform, target_bits, num_device_shards=num_device_shards,
num_host_shards=num_host_shards, shard_index=shard_index)]
SPEC['builders'][builder_name] = TestSpec(
- 'chromium_perf', platform, target_bits, tests=tests)
+ 'chromium_perf', perf_id, platform, target_bits, tests=tests)
_AddBuildSpec('Android Builder', 'android', target_bits=32)
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/api.py ('k') | scripts/slave/recipe_modules/chromium_tests/chromium_perf_fyi.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698