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

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

Issue 12618010: Rename the name of the new analyzer jar file from new_analyzer.jar to (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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 | « sdk/bin/dartanalyzer.bat ('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 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':
« no previous file with comments | « sdk/bin/dartanalyzer.bat ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698