| Index: tools/testing/dart/test_options.dart
|
| ===================================================================
|
| --- tools/testing/dart/test_options.dart (revision 20939)
|
| +++ tools/testing/dart/test_options.dart (working copy)
|
| @@ -79,10 +79,10 @@
|
| dartc: Perform static analysis on Dart code by running dartc.
|
| (only valid with the following runtimes: none),
|
|
|
| - new_analyzer: Perform static analysis on Dart code by running the analyzer.
|
| + dartanalyzer: Perform static analysis on Dart code by running the analyzer.
|
| (only valid with the following runtimes: none)''',
|
| ['-c', '--compiler'],
|
| - ['none', 'dart2dart', 'dart2js', 'dartc', 'new_analyzer'],
|
| + ['none', 'dart2dart', 'dart2js', 'dartc', 'dartanalyzer'],
|
| 'none'),
|
| new _TestOptionSpecification(
|
| 'runtime',
|
| @@ -442,7 +442,7 @@
|
| 'opera'];
|
| break;
|
| case 'dartc':
|
| - case 'new_analyzer':
|
| + case 'dartanalyzer':
|
| validRuntimes = const ['none'];
|
| break;
|
| case 'none':
|
| @@ -591,7 +591,7 @@
|
| var timeout = 60;
|
| switch (configuration['compiler']) {
|
| case 'dartc':
|
| - case 'new_analyzer':
|
| + case 'dartanalyzer':
|
| timeout *= 4;
|
| break;
|
| case 'dart2js':
|
|
|