Chromium Code Reviews| Index: tools/bots/compiler.py |
| diff --git a/tools/bots/compiler.py b/tools/bots/compiler.py |
| index f5e43cd69e23c5e119609b10ce278e525f8702f0..f166bc1f683548bc6a00547b3ae3fc9402126839 100644 |
| --- a/tools/bots/compiler.py |
| +++ b/tools/bots/compiler.py |
| @@ -38,12 +38,10 @@ DART2JS_FULL_CONFIGURATIONS = { |
| 'mac' : [ ], |
| 'windows-ie10' : [ |
| {'runtime' : 'ie10'}, |
| - {'runtime' : 'ie10', 'additional_flags' : ['--checked']}, |
| {'runtime' : 'chrome'}, |
| ], |
| 'windows-ie11' : [ |
| {'runtime' : 'ie11'}, |
| - {'runtime' : 'ie11', 'additional_flags' : ['--checked']}, |
| {'runtime' : 'ff'}, |
| ], |
| } |
| @@ -290,7 +288,7 @@ def TestCompiler(runtime, mode, system, flags, is_buildbot, arch, |
| if compiler == 'dart2js' and runtime in ['ie10', 'ie11']: |
| TestStep(compiler, mode, system, compiler, runtime, |
| - ['html', 'pkg', 'samples'], flags, arch) |
| + ['html', 'pkg', 'samples', 'co19'], flags, arch) |
|
ricow1
2015/01/26 09:25:19
we should remove the list all together, but I am f
|
| else: |
| # Run the default set of test suites. |
| TestStep(compiler, mode, system, compiler, |