Run language tests on ie11, too to ensure it's not the test framework problem.

BUG=
R=blois@google.com

Review URL: https://codereview.chromium.org//226243002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@34735 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
efortuna@google.com 2014-04-04 16:44:39 +00:00
parent 65df30abd1
commit 8b029bc160

View file

@ -136,7 +136,7 @@ def GetBuildInfo(builder_name, is_buildbot):
def NeedsXterm(compiler, runtime):
return runtime in ['ie9', 'ie10', 'ie11', 'chrome', 'safari', 'opera',
return runtime in ['ie9', 'ie10', 'ie11', 'chrome', 'safari', 'opera',
'ff', 'drt', 'dartium']
@ -262,9 +262,13 @@ def TestCompiler(runtime, mode, system, flags, is_buildbot, arch,
TestStep("dart2js_unit", mode, system, 'none', 'vm', ['dart2js'],
unit_test_flags, arch)
if compiler == 'dart2js' and runtime in ['ie10', 'ie11']:
if compiler == 'dart2js' and runtime in ['ie10']:
TestStep(compiler, mode, system, compiler, runtime,
['html', 'pkg', 'samples'], flags, arch)
elif compiler == 'dart2js' and runtime in ['ie11']:
#TODO(efortuna): Remove this branch.
TestStep(compiler, mode, system, compiler, runtime,
['html', 'pkg', 'samples', 'language'], flags, arch)
else:
# Run the default set of test suites.
TestStep(compiler, mode, system, compiler,