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

Unified Diff: tests/debugger/debugger_tests.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 | « tests/debugger/break_line_pattern_test.dart ('k') | tests/debugger/empty_column_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/debugger/debugger_tests.dart
diff --git a/tests/debugger/debugger_tests.dart b/tests/debugger/debugger_tests.dart
index 5e400b2989fc27d1acfaf75121ee98fd25ee695a..a7ae0632586bab5cee5c0387f844c3a90c59d825 100644
--- a/tests/debugger/debugger_tests.dart
+++ b/tests/debugger/debugger_tests.dart
@@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE.md file.
/// Modify this file to include more tests.
-library fletch_tests.debugger;
+library dartino_tests.debugger;
import 'dart:async' show
Stream,
@@ -21,12 +21,12 @@ import 'dart:io' show
import 'package:expect/expect.dart' show
Expect;
-import 'package:fletchc/src/verbs/infrastructure.dart' show
+import 'package:dartino_compiler/src/verbs/infrastructure.dart' show
fileUri;
-import 'package:fletchc/src/hub/session_manager.dart';
+import 'package:dartino_compiler/src/hub/session_manager.dart';
-import 'package:fletchc/src/worker/developer.dart';
+import 'package:dartino_compiler/src/worker/developer.dart';
const String testLocation = 'tests/debugger';
const String generatedTestLocation = 'tests/debugger_generated';
@@ -60,7 +60,7 @@ Future runTest(String name, Uri uri, bool writeGoldenFiles) async {
List<String> debuggerCommands = <String>[];
for (String line in await new File.fromUri(uri).readAsLines()) {
- const String commandsPattern = "// FletchDebuggerCommands=";
+ const String commandsPattern = "// DartinoDebuggerCommands=";
if (line.startsWith(commandsPattern)) {
debuggerCommands = line.substring(commandsPattern.length).split(",");
}
@@ -68,14 +68,14 @@ Future runTest(String name, Uri uri, bool writeGoldenFiles) async {
Expect.equals(0, await run(state, testDebuggerCommands: debuggerCommands));
- int exitCode = await state.fletchVm.exitCode;
+ int exitCode = await state.dartinoVm.exitCode;
state.stdoutSink.detachCommandSender();
state.stderrSink.detachCommandSender();
if (exitCode != 0) {
output.addAll(
- UTF8.encode("Non-zero exit code from 'fletch-vm' ($exitCode).\n"));
+ UTF8.encode("Non-zero exit code from 'dartino-vm' ($exitCode).\n"));
}
String expectationsFile =
« no previous file with comments | « tests/debugger/break_line_pattern_test.dart ('k') | tests/debugger/empty_column_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698