| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 | 2 |
| 3 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4 # for details. All rights reserved. Use of this source code is governed by a | 4 # for details. All rights reserved. Use of this source code is governed by a |
| 5 # BSD-style license that can be found in the LICENSE file. | 5 # BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 """ | 7 """ |
| 8 Dart2js buildbot steps | 8 Dart2js buildbot steps |
| 9 | 9 |
| 10 Runs tests for the dart2js compiler. | 10 Runs tests for the dart2js compiler. |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 # The dart2js compiler isn't self-hosted (yet) so we run its | 256 # The dart2js compiler isn't self-hosted (yet) so we run its |
| 257 # unit tests on the VM. We avoid doing this on the builders | 257 # unit tests on the VM. We avoid doing this on the builders |
| 258 # that run the browser tests to cut down on the cycle time. | 258 # that run the browser tests to cut down on the cycle time. |
| 259 unit_test_flags = [flag for flag in flags if flag.startswith('--shard')] | 259 unit_test_flags = [flag for flag in flags if flag.startswith('--shard')] |
| 260 # Run the unit tests in checked mode (the VM's checked mode). | 260 # Run the unit tests in checked mode (the VM's checked mode). |
| 261 unit_test_flags.append('--checked') | 261 unit_test_flags.append('--checked') |
| 262 TestStep("dart2js_unit", mode, system, 'none', 'vm', ['dart2js'], | 262 TestStep("dart2js_unit", mode, system, 'none', 'vm', ['dart2js'], |
| 263 unit_test_flags, arch) | 263 unit_test_flags, arch) |
| 264 | 264 |
| 265 if compiler == 'dart2js' and runtime in ['ie10', 'ie11']: | 265 if compiler == 'dart2js' and runtime in ['ie10', 'ie11']: |
| 266 TestStep("%s-%s" % (compiler, runtime), mode, system, compiler, runtime, | 266 TestStep(compiler, mode, system, compiler, runtime, |
| 267 ['html', 'pkg', 'samples'], flags, arch) | 267 ['html', 'pkg', 'samples'], flags, arch) |
| 268 else: | 268 else: |
| 269 # Run the default set of test suites. | 269 # Run the default set of test suites. |
| 270 TestStep(compiler, mode, system, compiler, | 270 TestStep(compiler, mode, system, compiler, |
| 271 runtime, [], flags, arch) | 271 runtime, [], flags, arch) |
| 272 | 272 |
| 273 if compiler == 'dart2js': | 273 if compiler == 'dart2js': |
| 274 # TODO(kasperl): Consider running peg and css tests too. | 274 # TODO(kasperl): Consider running peg and css tests too. |
| 275 extras = ['dart2js_extra', 'dart2js_native'] | 275 extras = ['dart2js_extra', 'dart2js_native'] |
| 276 extras_flags = flags | 276 extras_flags = flags |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 """ | 372 """ |
| 373 with bot.BuildStep('Build SDK'): | 373 with bot.BuildStep('Build SDK'): |
| 374 args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode, | 374 args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode, |
| 375 '--arch=' + build_info.arch, 'dart2js_bot'] | 375 '--arch=' + build_info.arch, 'dart2js_bot'] |
| 376 print 'Build SDK and d8: %s' % (' '.join(args)) | 376 print 'Build SDK and d8: %s' % (' '.join(args)) |
| 377 bot.RunProcess(args) | 377 bot.RunProcess(args) |
| 378 | 378 |
| 379 | 379 |
| 380 if __name__ == '__main__': | 380 if __name__ == '__main__': |
| 381 bot.RunBot(GetBuildInfo, RunCompilerTests, build_step=BuildCompiler) | 381 bot.RunBot(GetBuildInfo, RunCompilerTests, build_step=BuildCompiler) |
| OLD | NEW |