| Index: tools/testing/dart/test_options.dart
|
| ===================================================================
|
| --- tools/testing/dart/test_options.dart (revision 10970)
|
| +++ tools/testing/dart/test_options.dart (working copy)
|
| @@ -71,17 +71,14 @@
|
| dart2dart: Compile Dart code to Dart code
|
| (only valid with the following runtimes: vm, drt)
|
|
|
| - dart2js: Compile dart code to JavaScript by running dart2js (leg).
|
| - (only valid with the following runtimes: same as frog)
|
| + dart2js: Compile dart code to JavaScript by running dart2js.
|
| + (only valid with the following runtimes: d8, drt, chrome,
|
| + safari, ie, firefox, opera, none (compile only)),
|
|
|
| dartc: Perform static analysis on Dart code by running dartc.
|
| - (only valid with the following runtimes: none)
|
| -
|
| - frog: (DEPRECATED) Compile dart code to JavaScript by running the
|
| - frog compiler. (only valid with the following runtimes: d8,
|
| - drt, chrome, safari, ie, firefox, opera, none (compile only))''',
|
| + (only valid with the following runtimes: none)''',
|
| ['-c', '--compiler'],
|
| - ['none', 'dart2dart', 'frog', 'dart2js', 'dartc'],
|
| + ['none', 'dart2dart', 'dart2js', 'dartc'],
|
| 'none'),
|
| new _TestOptionSpecification(
|
| 'runtime',
|
| @@ -214,12 +211,6 @@
|
| false,
|
| 'bool'),
|
| new _TestOptionSpecification(
|
| - 'frog',
|
| - 'Path to frog script or executable',
|
| - ['--frog'],
|
| - [],
|
| - ''),
|
| - new _TestOptionSpecification(
|
| 'dart',
|
| 'Path to dart executable',
|
| ['--dart'],
|
| @@ -238,12 +229,6 @@
|
| [],
|
| ''),
|
| new _TestOptionSpecification(
|
| - 'froglib',
|
| - 'Path to frog library',
|
| - ['--froglib'],
|
| - [],
|
| - ''),
|
| - new _TestOptionSpecification(
|
| 'use_sdk',
|
| '''Use compiler or runtime from the SDK.
|
|
|
| @@ -392,7 +377,6 @@
|
| bool isValid = true;
|
| List<String> validRuntimes;
|
| switch (config['compiler']) {
|
| - case 'frog':
|
| case 'dart2js':
|
| // Note: by adding 'none' as a configuration, if the user
|
| // runs test.py -c dart2js -r drt,none the dart2js_none and
|
|
|