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

Unified Diff: scripts/slave/recipe_modules/bot_update/test_api.py

Issue 1382203002: bot_update (+recipe_module): treat patch download as infra failure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: NBits\ Created 5 years, 2 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
« no previous file with comments | « scripts/slave/recipe_modules/bot_update/example.expected/tryjob_fail_patch_download.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/bot_update/test_api.py
diff --git a/scripts/slave/recipe_modules/bot_update/test_api.py b/scripts/slave/recipe_modules/bot_update/test_api.py
index 013bfdb3a84f50556ff925a629011c51915f73b7..05d8671b6a4b499c9acef4a273fbf7946dcb2e67 100644
--- a/scripts/slave/recipe_modules/bot_update/test_api.py
+++ b/scripts/slave/recipe_modules/bot_update/test_api.py
@@ -72,6 +72,9 @@ class BotUpdateTestApi(recipe_test_api.RecipeTestApi):
if fail_patch:
output['log_lines'] = [('patch error', 'Patch failed to apply'),]
output['patch_failure'] = True
+ output['patch_apply_return_code'] = 1
+ if fail_patch == 'download':
+ output['patch_apply_return_code'] = 3
return self.m.json.output(output)
@staticmethod
« no previous file with comments | « scripts/slave/recipe_modules/bot_update/example.expected/tryjob_fail_patch_download.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698