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

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

Issue 20722006: Removed compiler/ directory from repository (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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
Index: dart/tools/testing/dart/test_suite.dart
diff --git a/dart/tools/testing/dart/test_suite.dart b/dart/tools/testing/dart/test_suite.dart
index e4dfd50a2993bf44d6ad9aaee120230ae78e1272..5130abe7ac14bc39b934efbcb30aa1aa01eb128b 100644
--- a/dart/tools/testing/dart/test_suite.dart
+++ b/dart/tools/testing/dart/test_suite.dart
@@ -138,7 +138,6 @@ abstract class TestSuite {
}
var name;
switch (configuration['compiler']) {
- case 'dartc':
case 'dartanalyzer':
case 'dart2analyzer':
name = executablePath;
@@ -179,8 +178,6 @@ abstract class TestSuite {
return '$buildDir/dart-sdk/bin/dart$suffix';
}
return '$buildDir/dart$suffix';
- case 'dartc':
- return '$buildDir/analyzer/bin/dart_analyzer$suffix';
case 'dartanalyzer':
return 'sdk/bin/dartanalyzer_developer$suffix';
case 'dart2analyzer':
@@ -807,7 +804,6 @@ class StandardTestSuite extends TestSuite {
return commands;
case 'none':
- case 'dartc':
case 'dartanalyzer':
case 'dart2analyzer':
var displayName = (configuration['compiler'] == 'none'
@@ -1193,7 +1189,6 @@ class StandardTestSuite extends TestSuite {
case 'dart2js':
case 'dartanalyzer':
case 'dart2analyzer':
- case 'dartc':
return 'text/javascript';
default:
print('Non-web runtime, so no scriptType for: '
@@ -1872,7 +1867,7 @@ class TestUtils {
const ['d8', 'jsshell'].contains(runtime);
static bool isCommandLineAnalyzer(String compiler) =>
- compiler == 'dartc' || compiler == 'dartanalyzer' || compiler == 'dart2analyzer';
+ compiler == 'dartanalyzer' || compiler == 'dart2analyzer';
static String buildDir(Map configuration) {
// FIXME(kustermann,ricow): Our code assumes that the returned 'buildDir'

Powered by Google App Engine
This is Rietveld 408576698