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

Unified Diff: dart/tools/testing/dart/test_options.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/create_sdk.py ('k') | dart/tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/test_options.dart
diff --git a/dart/tools/testing/dart/test_options.dart b/dart/tools/testing/dart/test_options.dart
index 99927e0b1b77a22fc5b04993a59e6546c8d484aa..78a990d0c80cbb8cc02f1b2e5b555ebec8a063e9 100644
--- a/dart/tools/testing/dart/test_options.dart
+++ b/dart/tools/testing/dart/test_options.dart
@@ -68,22 +68,17 @@ is 'dart file.dart' and you specify special command
none: Do not compile the Dart code (run native Dart code on the VM).
(only valid with the following runtimes: vm, drt)
- frog: Compile dart code to JavaScript by running the frog compiler.
- (only valid with the following runtimes: d8, drt, chrome, safari, ie,
- firefox, opera, none (compile only))
-
dart2js: Compile dart code to JavaScript by running dart2js (leg).
(only valid with the following runtimes: same as frog)
dartc: Perform static analysis on Dart code by running dartc.
(only valid with the following runtimes: none)
- frogsh: Compile dart code to JavaScript by running the frog compiler on
- node.js, and run the resulting JavaScript on the same instance of
- node.js.
- (only valid with the following runtimes: same as frog)''',
+ frog: (DEPRECATED) Compile dart code to JavaScript by running the
+ frog compiler. (only valid with the following runtimes: d8,
+ drt, chrome, safari, ie, firefox, opera, none (compile only))''',
['-c', '--compiler'],
- ['none', 'frog', 'dart2js', 'dartc', 'frogsh'],
+ ['none', 'frog', 'dart2js', 'dartc'],
'none'),
new _TestOptionSpecification(
'runtime',
@@ -384,7 +379,6 @@ is 'dart file.dart' and you specify special command
switch (config['compiler']) {
case 'frog':
case 'dart2js':
- case 'frogsh':
// Note: by adding 'none' as a configuration, if the user
// runs test.py -c dart2js -r drt,none the dart2js_none and
// dart2js_drt will be duplicating work. If later we don't need 'none'
« no previous file with comments | « dart/tools/create_sdk.py ('k') | dart/tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698