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

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

Issue 1403463002: V8 Buildbot: Pass isolate hashes from builder to tester. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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
Index: scripts/slave/recipes/v8.py
diff --git a/scripts/slave/recipes/v8.py b/scripts/slave/recipes/v8.py
index 917aefe208c498e49dfe5a7251f7e5217f3fbb38..a349cd7426ce033553b4d5eed961091e61f84781 100644
--- a/scripts/slave/recipes/v8.py
+++ b/scripts/slave/recipes/v8.py
@@ -104,6 +104,11 @@ def GenTests(api):
if bot_config.get('parent_buildername'):
test += api.properties(parent_got_revision='54321')
+ # Add isolated-tests property from parent builder.
+ parent = master_config['builders'][bot_config['parent_buildername']]
+ isolated_tests = parent['testing'].get('isolated_tests')
+ if isolated_tests:
+ test += api.properties(isolated_tests=isolated_tests)
if mastername.startswith('tryserver'):
test += (api.properties(

Powered by Google App Engine
This is Rietveld 408576698