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

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

Issue 946403002: Fix "analyze" on linux_chromium_clobber_rel_ng always compiling everything (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 10 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/chromium_trybot.py
diff --git a/scripts/slave/recipes/chromium_trybot.py b/scripts/slave/recipes/chromium_trybot.py
index 20a5d94aaa94d1b1ec6e9d51d6e75a78c9cec18e..37e5bd7459247b72005a3e98b2b8eda918d397da 100644
--- a/scripts/slave/recipes/chromium_trybot.py
+++ b/scripts/slave/recipes/chromium_trybot.py
@@ -444,6 +444,17 @@ def GenTests(api):
props(mastername=mastername, buildername=buildername)
)
+ # Regression test for http://crbug.com/453471#c16
+ yield (
+ api.test('clobber_analyze') +
+ props(buildername='linux_chromium_clobber_rel_ng') +
+ api.platform.name('linux') +
+ api.override_step_data(
+ 'analyze',
+ api.json.output({'status': 'Found dependency', 'targets': [],
+ 'build_targets': ['base_unittests', 'net_unittests']}))
+ )
+
yield (
api.test('invalid_results') +
props() +

Powered by Google App Engine
This is Rietveld 408576698