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

Unified Diff: tools/bots/bot.py

Issue 148463007: Add builder_tag option to tools/test.dart (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 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 | « pkg/pkgbuild.status ('k') | tools/bots/pub.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/bot.py
===================================================================
--- tools/bots/bot.py (revision 32052)
+++ tools/bots/bot.py (working copy)
@@ -40,11 +40,12 @@
- arch: The architecture to build on.
- dart2js_full: Boolean indicating whether this builder will run dart2js
on several different runtimes.
+ - test_tag: A tag indicating a specialial builder setup.
kasperl 2014/01/28 09:35:55 builder_tag? specialial -> special
ricow1 2014/01/28 09:49:36 Done.
"""
def __init__(self, compiler, runtime, mode, system, checked=False,
host_checked=False, minified=False, shard_index=None,
total_shards=None, is_buildbot=False, test_set=None,
- csp=None, arch=None, dart2js_full=False):
+ csp=None, arch=None, dart2js_full=False, test_tag=None):
self.compiler = compiler
self.runtime = runtime
self.mode = mode
@@ -58,6 +59,7 @@
self.test_set = test_set
self.csp = csp
self.dart2js_full = dart2js_full
+ self.test_tag = test_tag
if (arch == None):
self.arch = 'ia32'
else:
« no previous file with comments | « pkg/pkgbuild.status ('k') | tools/bots/pub.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698