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

Unified Diff: tools/bots/compiler.py

Issue 190323002: Allow IE11 as valid runtime on the bots. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/compiler.py
===================================================================
--- tools/bots/compiler.py (revision 33412)
+++ tools/bots/compiler.py (working copy)
@@ -25,7 +25,7 @@
r'dart2js-(linux|mac|windows)(-(jsshell))?-(debug|release)(-(checked|host-checked))?(-(host-checked))?(-(minified))?(-(x64))?-?(\d*)-?(\d*)')
DART2JS_FULL_BUILDER = r'dart2js-full-(linux|mac|windows)(-checked)?(-minified)?-(\d+)-(\d+)'
WEB_BUILDER = (
- r'dart2js-(ie9|ie10|ff|safari|chrome|chromeOnAndroid|opera|drt)-(win7|win8|mac10\.8|mac10\.7|linux)(-(all|html))?(-(csp))?(-(\d+)-(\d+))?')
+ r'dart2js-(ie9|ie10|ie11|ff|safari|chrome|chromeOnAndroid|opera|drt)-(win7|win8|mac10\.8|mac10\.7|linux)(-(all|html))?(-(csp))?(-(\d+)-(\d+))?')
DART2JS_FULL_CONFIGURATIONS = {
'linux' : [ ],
@@ -136,8 +136,8 @@
def NeedsXterm(compiler, runtime):
- return runtime in ['ie9', 'ie10', 'chrome', 'safari', 'opera', 'ff', 'drt',
- 'dartium']
+ return runtime in ['ie9', 'ie10', 'ie11', 'chrome', 'safari', 'opera',
+ 'ff', 'drt', 'dartium']
def TestStepName(name, flags):
@@ -261,7 +261,7 @@
TestStep("dart2js_unit", mode, system, 'none', 'vm', ['dart2js'],
unit_test_flags, arch)
- if compiler == 'dart2js' and system == 'windows' and runtime == 'ie10':
+ if compiler == 'dart2js' and runtime in ['ie10', 'ie11']:
TestStep("%s-%s" % (compiler, runtime), mode, system, compiler, runtime,
['html'], flags, arch)
else:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698