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

Unified Diff: scripts/slave/recipes/chromium_trybot.py

Issue 1212413002: Pass all compile targets to "analyze" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: do not include 'all' Created 5 years, 6 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 | « no previous file | scripts/slave/recipes/chromium_trybot.expected/analyze_finds_invalid_target.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/chromium_trybot.py
diff --git a/scripts/slave/recipes/chromium_trybot.py b/scripts/slave/recipes/chromium_trybot.py
index df15dc718f1f7461019dc75c702a359486cf3f7d..88968cb4b76c1f012b04f605254281272d8cd011 100644
--- a/scripts/slave/recipes/chromium_trybot.py
+++ b/scripts/slave/recipes/chromium_trybot.py
@@ -462,10 +462,13 @@ def _RunStepsInternal(api):
override_bot_type='builder_tester',
override_tests=tests)
+ targets_for_analyze = sorted(set(
+ all_compile_targets(api, tests + tests_including_triggered) +
sky 2015/06/29 02:28:25 This certainly works, but shouldn't we instead war
Paweł Hajdan Jr. 2015/06/29 12:38:22 That's right. Do you think it's blocking this CL?
+ [t for t in compile_targets if t.lower() != 'all']))
requires_compile, matching_exes, compile_targets = \
api.chromium_tests.analyze(
affected_files,
- all_compile_targets(api, tests + tests_including_triggered),
+ targets_for_analyze,
compile_targets,
'trybot_analyze_config.json')
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_trybot.expected/analyze_finds_invalid_target.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698