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

Side by Side Diff: dart/tools/bots/compiler.py

Issue 748053002: Run Try Dart tests on Dart-enabled browser (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 if runtime == 'd8': 273 if runtime == 'd8':
274 # The dart2js compiler isn't self-hosted (yet) so we run its 274 # The dart2js compiler isn't self-hosted (yet) so we run its
275 # unit tests on the VM. We avoid doing this on the builders 275 # unit tests on the VM. We avoid doing this on the builders
276 # that run the browser tests to cut down on the cycle time. 276 # that run the browser tests to cut down on the cycle time.
277 unit_test_flags = [flag for flag in flags if flag.startswith('--shard')] 277 unit_test_flags = [flag for flag in flags if flag.startswith('--shard')]
278 # Run the unit tests in checked mode (the VM's checked mode). 278 # Run the unit tests in checked mode (the VM's checked mode).
279 unit_test_flags.append('--checked') 279 unit_test_flags.append('--checked')
280 TestStep("dart2js_unit", mode, system, 'none', 'vm', ['dart2js', 'try'], 280 TestStep("dart2js_unit", mode, system, 'none', 'vm', ['dart2js', 'try'],
281 unit_test_flags, arch) 281 unit_test_flags, arch)
282 282
283 if compiler == 'dart2js' and runtime == 'drt':
284 # Ensure that we run the "try" tests on Content Shell.
285 TestStep("incremental_compilation", mode, system, 'none', runtime,
286 ['try'], unit_test_flags, arch)
287
283 if compiler == 'dart2js' and runtime in ['ie10', 'ie11']: 288 if compiler == 'dart2js' and runtime in ['ie10', 'ie11']:
284 TestStep(compiler, mode, system, compiler, runtime, 289 TestStep(compiler, mode, system, compiler, runtime,
285 ['html', 'pkg', 'samples'], flags, arch) 290 ['html', 'pkg', 'samples'], flags, arch)
286 else: 291 else:
287 # Run the default set of test suites. 292 # Run the default set of test suites.
288 TestStep(compiler, mode, system, compiler, 293 TestStep(compiler, mode, system, compiler,
289 runtime, [], flags, arch) 294 runtime, [], flags, arch)
290 295
291 if compiler == 'dart2js': 296 if compiler == 'dart2js':
292 # TODO(kasperl): Consider running peg and css tests too. 297 # TODO(kasperl): Consider running peg and css tests too.
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 if build_info.mode == 'debug': 405 if build_info.mode == 'debug':
401 target = 'dart2js_bot_debug' 406 target = 'dart2js_bot_debug'
402 args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode, 407 args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode,
403 '--arch=' + build_info.arch, target] 408 '--arch=' + build_info.arch, target]
404 print 'Build SDK and d8: %s' % (' '.join(args)) 409 print 'Build SDK and d8: %s' % (' '.join(args))
405 bot.RunProcess(args) 410 bot.RunProcess(args)
406 411
407 412
408 if __name__ == '__main__': 413 if __name__ == '__main__':
409 bot.RunBot(GetBuildInfo, RunCompilerTests, build_step=BuildCompiler) 414 bot.RunBot(GetBuildInfo, RunCompilerTests, build_step=BuildCompiler)
OLDNEW
« 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