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

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

Issue 10164004: Remove frogsh. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 8 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 | « dart/tools/testing/dart/test_options.dart ('k') | dart/tools/utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 cf9c46783f3ba210e94a0cb3e14e1efce4dabf1c..ea5fdf0dddc785f33f619f92ee43b0c2b13942e4 100644
--- a/dart/tools/testing/dart/test_suite.dart
+++ b/dart/tools/testing/dart/test_suite.dart
@@ -652,7 +652,6 @@ class StandardTestSuite implements TestSuite {
List<String> args = TestUtils.standardOptions(configuration);
switch (compiler) {
case 'frog':
- case 'frogsh':
case 'dart2js':
String libdir = configuration['froglib'];
if (libdir == '') {
@@ -745,7 +744,6 @@ class StandardTestSuite implements TestSuite {
case 'none':
return 'application/dart';
case 'frog':
- case 'frogsh':
case 'dart2js':
case 'dartc':
return 'text/javascript';
@@ -755,7 +753,7 @@ class StandardTestSuite implements TestSuite {
return null;
}
}
-
+
bool get hasRuntime() {
switch(configuration['runtime']) {
case null:
@@ -825,7 +823,6 @@ class StandardTestSuite implements TestSuite {
args.add('machine');
}
if ((configuration['compiler'] == 'frog'
- || configuration['compiler'] == 'frogsh'
|| configuration['compiler'] == 'dart2js')
&& (configuration['runtime'] == 'none')) {
args.add('--compile-only');
@@ -1241,8 +1238,6 @@ class TestUtils {
case 'frog':
case 'dart2js':
return 'frog/bin/frog$suffix';
- case 'frogsh':
- return 'frog/bin/frogsh$suffix';
default:
throw "Unknown executable for: ${configuration['compiler']}";
}
« no previous file with comments | « dart/tools/testing/dart/test_options.dart ('k') | dart/tools/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698