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

Unified Diff: scripts/slave/recipes/bisection/desktop_bisect.py

Issue 2228473002: bisection: prepare for running under remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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/recipes/bisection/desktop_bisect.py
diff --git a/scripts/slave/recipes/bisection/desktop_bisect.py b/scripts/slave/recipes/bisection/desktop_bisect.py
index 0ad4894fc1c9c947a1c139fd62e055bfcae281e1..87c0f49b895581bc269f812a46cbe2a3cb72fbc8 100644
--- a/scripts/slave/recipes/bisection/desktop_bisect.py
+++ b/scripts/slave/recipes/bisection/desktop_bisect.py
@@ -35,6 +35,7 @@ def RunSteps(api):
def GenTests(api):
yield (api.test('basic') + api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect') + api.override_step_data(
'git diff to analyze patch',
@@ -101,6 +102,7 @@ results-without_patch
}
yield (api.test('basic_perf_tryjob') + api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect',
patch_storage='rietveld',
@@ -130,6 +132,7 @@ results-without_patch
config_json.update({'metric': 'dummy/dummy'})
yield (api.test('basic_perf_tryjob_with_metric') + api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect',
patch_storage='rietveld',
@@ -158,6 +161,7 @@ results-without_patch
yield (api.test('perf_tryjob_failed_test') + api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect',
patch_storage='rietveld',
@@ -184,6 +188,7 @@ results-without_patch
yield (
api.test('basic_perf_tryjob_with_revisions') + api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect',
patch_storage='rietveld',
@@ -223,6 +228,7 @@ results-without_patch
}
yield (api.test('perf_tryjob_config_error') + api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect') + api.properties(
requester='abcdxyz@chromium.org') + api.override_step_data(
@@ -232,6 +238,7 @@ results-without_patch
yield (api.test('perf_cq_run_benchmark') +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect',
patch_storage='rietveld',
@@ -250,6 +257,7 @@ results-without_patch
yield (api.test('perf_cq_no_changes') +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect',
patch_storage='rietveld',
@@ -264,6 +272,7 @@ results-without_patch
yield (api.test('perf_cq_no_benchmark_to_run') +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect',
patch_storage='rietveld',
@@ -295,6 +304,7 @@ results-without_patch
}
yield (
api.test('basic_linux_bisect_tester_recipe') + api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect') + api.step_data(
'saving url to temp file',
@@ -321,7 +331,8 @@ results-without_patch
'builder_port': '8341',
}
yield (api.test('basic_linux_bisect_tester_recipe_ret_code') +
- api.properties.tryserver(mastername='tryserver.chromium.perf',
+ api.properties.tryserver(path_config='kitchen',
+ mastername='tryserver.chromium.perf',
buildername='linux_perf_bisect') +
api.step_data('saving url to temp file',
stdout=api.raw_io.output('/tmp/dummy1')) + api.step_data(

Powered by Google App Engine
This is Rietveld 408576698