Index: tools/testing/dart/test_suite.dart |
=================================================================== |
--- tools/testing/dart/test_suite.dart (revision 20939) |
+++ tools/testing/dart/test_suite.dart (working copy) |
@@ -140,7 +140,7 @@ |
var name; |
switch (configuration['compiler']) { |
case 'dartc': |
- case 'new_analyzer': |
+ case 'dartanalyzer': |
name = executablePath; |
break; |
case 'dart2js': |
@@ -181,8 +181,8 @@ |
return '$buildDir/dart$suffix'; |
case 'dartc': |
return '$buildDir/analyzer/bin/dart_analyzer$suffix'; |
- case 'new_analyzer': |
- return 'sdk/bin/analyzer$suffix'; |
+ case 'dartanalyzer': |
+ return 'sdk/bin/dartanalyzer$suffix'; |
default: |
throw "Unknown executable for: ${configuration['compiler']}"; |
} |
@@ -781,7 +781,7 @@ |
case 'none': |
case 'dartc': |
- case 'new_analyzer': |
+ case 'dartanalyzer': |
var arguments = new List.from(vmOptions); |
arguments.addAll(args); |
return <Command>[new Command(dartShellFileName, arguments)]; |
@@ -1170,7 +1170,7 @@ |
case 'dart2dart': |
return 'application/dart'; |
case 'dart2js': |
- case 'new_analyzer': |
+ case 'dartanalyzer': |
case 'dartc': |
return 'text/javascript'; |
default: |
@@ -1864,7 +1864,7 @@ |
const ['d8', 'jsshell'].contains(runtime); |
static bool isCommandLineAnalyzer(String compiler) => |
- compiler == 'dartc' || compiler == 'new_analyzer'; |
+ compiler == 'dartc' || compiler == 'dartanalyzer'; |
static String buildDir(Map configuration) { |
// FIXME(kustermann,ricow): Our code assumes that the returned 'buildDir' |