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

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

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « tools/testing/dart/test_options.dart ('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_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index cf198d5e765b23656192a9553874b1f4aaa2455a..b950fa1b945dbba6196b281b7344d72137af4166 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -26,19 +26,19 @@ import "test_suite.dart";
import "utils.dart";
import 'record_and_replay.dart';
-import 'fletch_warnings_suite.dart' show
- FletchWarningsOutputCommand;
+import 'dartino_warnings_suite.dart' show
+ DartinoWarningsOutputCommand;
-import 'fletch_test_suite.dart' show
- FletchTestCommand;
+import 'dartino_test_suite.dart' show
+ DartinoTestCommand;
-import 'fletch_session_command.dart' show
- FletchSessionCommand;
+import 'dartino_session_command.dart' show
+ DartinoSessionCommand;
import 'decode_exit_code.dart' show
DecodeExitCode;
-import '../../../pkg/fletchc/lib/src/hub/exit_codes.dart' show
+import '../../../pkg/dartino_compiler/lib/src/hub/exit_codes.dart' show
DART_VM_EXITCODE_COMPILE_TIME_ERROR,
DART_VM_EXITCODE_UNCAUGHT_EXCEPTION;
@@ -1660,7 +1660,7 @@ CommandOutput createCommandOutput(Command command,
command, exitCode, timedOut, stdout, stderr,
time, compilationSkipped);
} else if (command is AnalysisCommand) {
- return new FletchWarningsOutputCommand(
+ return new DartinoWarningsOutputCommand(
command, exitCode, timedOut, stdout, stderr,
time, compilationSkipped);
} else if (command is VmCommand) {
@@ -2511,9 +2511,9 @@ class CommandExecutorImpl implements CommandExecutor {
.runCommand(command.flavor, command, timeout, command.arguments);
} else if (command is ScriptCommand) {
return command.run();
- } else if (command is FletchTestCommand) {
+ } else if (command is DartinoTestCommand) {
return command.run(timeout);
- } else if (command is FletchSessionCommand) {
+ } else if (command is DartinoSessionCommand) {
return command.run(timeout, globalConfiguration['verbose']);
} else {
return new RunningProcess(command, timeout).run();
« no previous file with comments | « tools/testing/dart/test_options.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698