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

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

Issue 339183013: De-duplicate steps between chromium and chromium_trybot recipes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fixes Created 6 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
Index: scripts/slave/recipes/chromium.py
diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
index 409ee641977fcddd4f492df69a6c1382bc9e902a..3699798590bc25cb1f4a04d786e9e00630dd9dc8 100644
--- a/scripts/slave/recipes/chromium.py
+++ b/scripts/slave/recipes/chromium.py
@@ -219,7 +219,7 @@ def GenSteps(api):
steps.append(api.chromium_android.common_tests_setup_steps())
if not bot_config.get('do_not_run_tests'):
- test_steps = [t.run(api) for t in bot_config.get('tests', [])]
+ test_steps = [t.run(api, '') for t in bot_config.get('tests', [])]
steps.extend(api.chromium.setup_tests(bot_type, test_steps))
if (api.chromium.c.TARGET_PLATFORM == 'android' and

Powered by Google App Engine
This is Rietveld 408576698