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

Unified Diff: tools/testing/dart/test_options.dart

Issue 206623010: Add support for ie11 in our testing scripts (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/testing/dart/runtime_configuration.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_options.dart
===================================================================
--- tools/testing/dart/test_options.dart (revision 34348)
+++ tools/testing/dart/test_options.dart (working copy)
@@ -63,7 +63,7 @@
dart2js: Compile dart code to JavaScript by running dart2js.
(only valid with the following runtimes: d8, drt, chrome,
- safari, ie9, ie10, firefox, opera, chromeOnAndroid,
+ safari, ie9, ie10, ie11, firefox, opera, chromeOnAndroid,
none (compile only)),
dartanalyzer: Perform static analysis on Dart code by running the analyzer on Java.
@@ -92,14 +92,15 @@
DartiumOnAndroid: Run Dart or Javascript in Dartium on Android.
- [ff | chrome | safari | ie9 | ie10 | opera | chromeOnAndroid]:
+ [ff | chrome | safari | ie9 | ie10 | ie11 | opera | chromeOnAndroid]:
Run JavaScript in the specified browser.
none: No runtime, compile only (for example, used for dartanalyzer static
analysis tests).''',
['-r', '--runtime'],
['vm', 'd8', 'jsshell', 'drt', 'dartium', 'ff', 'firefox',
- 'chrome', 'safari', 'ie9', 'ie10', 'opera', 'chromeOnAndroid',
+ 'chrome', 'safari', 'ie9', 'ie10', 'ie11', 'opera',
+ 'chromeOnAndroid',
'ContentShellOnAndroid', 'DartiumOnAndroid', 'none'],
'vm'),
new _TestOptionSpecification(
@@ -586,7 +587,7 @@
// dart2js_drt will be duplicating work. If later we don't need 'none'
// with dart2js, we should remove it from here.
validRuntimes = const ['d8', 'jsshell', 'drt', 'none', 'dartium',
- 'ff', 'chrome', 'safari', 'ie9', 'ie10',
+ 'ff', 'chrome', 'safari', 'ie9', 'ie10', 'ie11',
'opera', 'chromeOnAndroid'];
break;
case 'dartanalyzer':
« no previous file with comments | « tools/testing/dart/runtime_configuration.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698