| Index: tools/testing/dart/test_options.dart
|
| ===================================================================
|
| --- tools/testing/dart/test_options.dart (revision 29259)
|
| +++ tools/testing/dart/test_options.dart (working copy)
|
| @@ -89,6 +89,8 @@
|
| ContentShellOnAndroid: Run Dart or JavaScript in Dartium content shell
|
| on Android.
|
|
|
| + DartiumOnAndroid: Run Dart or Javascript in Dartium on Android.
|
| +
|
| [ff | chrome | safari | ie9 | ie10 | opera | chromeOnAndroid]:
|
| Run JavaScript in the specified browser.
|
|
|
| @@ -97,7 +99,7 @@
|
| ['-r', '--runtime'],
|
| ['vm', 'd8', 'jsshell', 'drt', 'dartium', 'ff', 'firefox',
|
| 'chrome', 'safari', 'ie9', 'ie10', 'opera', 'chromeOnAndroid',
|
| - 'ContentShellOnAndroid', 'none'],
|
| + 'ContentShellOnAndroid', 'DartiumOnAndroid', 'none'],
|
| 'vm'),
|
| new _TestOptionSpecification(
|
| 'arch',
|
| @@ -544,7 +546,8 @@
|
| break;
|
| case 'none':
|
| case 'dart2dart':
|
| - validRuntimes = const ['vm', 'drt', 'dartium', 'ContentShellOnAndroid'];
|
| + validRuntimes = const ['vm', 'drt', 'dartium',
|
| + 'ContentShellOnAndroid', 'DartiumOnAndroid'];
|
| break;
|
| }
|
| if (!validRuntimes.contains(config['runtime'])) {
|
|
|