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

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

Issue 227693005: Un-enable language tests for IE 11. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 if runtime == 'd8': 255 if runtime == 'd8':
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']: 265 if compiler == 'dart2js' and runtime in ['ie10', 'ie11']:
266 TestStep(compiler, mode, system, compiler, runtime, 266 TestStep(compiler, mode, system, compiler, runtime,
267 ['html', 'pkg', 'samples'], flags, arch) 267 ['html', 'pkg', 'samples'], flags, arch)
268 elif compiler == 'dart2js' and runtime in ['ie11']:
269 #TODO(efortuna): Remove this branch.
270 TestStep(compiler, mode, system, compiler, runtime,
271 ['html', 'pkg', 'samples', 'language'], flags, arch)
272 else: 268 else:
273 # Run the default set of test suites. 269 # Run the default set of test suites.
274 TestStep(compiler, mode, system, compiler, 270 TestStep(compiler, mode, system, compiler,
275 runtime, [], flags, arch) 271 runtime, [], flags, arch)
276 272
277 if compiler == 'dart2js': 273 if compiler == 'dart2js':
278 # TODO(kasperl): Consider running peg and css tests too. 274 # TODO(kasperl): Consider running peg and css tests too.
279 extras = ['dart2js_extra', 'dart2js_native'] 275 extras = ['dart2js_extra', 'dart2js_native']
280 extras_flags = flags 276 extras_flags = flags
281 if (system == 'linux' 277 if (system == 'linux'
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 """ 372 """
377 with bot.BuildStep('Build SDK'): 373 with bot.BuildStep('Build SDK'):
378 args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode, 374 args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode,
379 '--arch=' + build_info.arch, 'dart2js_bot'] 375 '--arch=' + build_info.arch, 'dart2js_bot']
380 print 'Build SDK and d8: %s' % (' '.join(args)) 376 print 'Build SDK and d8: %s' % (' '.join(args))
381 bot.RunProcess(args) 377 bot.RunProcess(args)
382 378
383 379
384 if __name__ == '__main__': 380 if __name__ == '__main__':
385 bot.RunBot(GetBuildInfo, RunCompilerTests, build_step=BuildCompiler) 381 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