| Index: tools/testing/dart/test_options.dart
|
| diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
|
| index 936bb39a05bec776f6c7cf70d3a1c496d1e65b37..255564ac5c1688a84428a97b19f7fa2333f0428a 100644
|
| --- a/tools/testing/dart/test_options.dart
|
| +++ b/tools/testing/dart/test_options.dart
|
| @@ -73,8 +73,9 @@ class TestOptionsParser {
|
| dart2analyzer: Perform static analysis on Dart code by running the analyzer
|
| (only valid with the following runtimes: none)
|
|
|
| - dart2app: Compile the Dart code into an app snapshot before running the test
|
| - (only valid with the following runtimes: dart_app)''',
|
| + dart2app:
|
| + dart2appjit: Compile the Dart code into an app snapshot before running test
|
| + (only valid with dart_app runtime)''',
|
| ['-c', '--compiler'],
|
| ['none', 'precompiler', 'dart2js', 'dart2analyzer', 'dart2app', 'dart2appjit'],
|
| 'none'),
|
| @@ -670,8 +671,6 @@ Note: currently only implemented for dart2js.''',
|
| validRuntimes = const ['none'];
|
| break;
|
| case 'dart2app':
|
| - validRuntimes = const ['dart_app'];
|
| - break;
|
| case 'dart2appjit':
|
| validRuntimes = const ['dart_app'];
|
| break;
|
|
|