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

Unified Diff: scripts/slave/recipe_modules/auto_bisect_staging/bisector.py

Issue 2469503002: Setting a maximum number of test runs per revision. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/auto_bisect_staging/example.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/auto_bisect_staging/bisector.py
diff --git a/scripts/slave/recipe_modules/auto_bisect_staging/bisector.py b/scripts/slave/recipe_modules/auto_bisect_staging/bisector.py
index 4c92894ef42ed425ab8875cfba0914e3a8d2b229..a09f296bb6c23e6a4f5a9403b06e3875aab5ffad 100644
--- a/scripts/slave/recipe_modules/auto_bisect_staging/bisector.py
+++ b/scripts/slave/recipe_modules/auto_bisect_staging/bisector.py
@@ -807,7 +807,8 @@ class Bisector(object):
'revision_string': r.revision_string(),
'mean_value': r.mean,
'std_dev': r.std_dev,
- 'values': r.debug_values or r.return_codes,
+ 'values': (r.debug_values if self.test_type == 'perf'
+ else r.return_codes),
'result': 'good' if r.good else 'bad' if r.bad else 'unknown',
})
return revision_rows
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/auto_bisect_staging/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698