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

Unified Diff: tests/dartino_tests/dartino_test_suite.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/dartino_tests/all_tests.dart ('k') | tests/dartino_tests/dartino_tests.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/dartino_tests/dartino_test_suite.dart
diff --git a/tests/fletch_tests/fletch_test_suite.dart b/tests/dartino_tests/dartino_test_suite.dart
similarity index 94%
rename from tests/fletch_tests/fletch_test_suite.dart
rename to tests/dartino_tests/dartino_test_suite.dart
index ed341fc7d6240be8b5b8bb9e4d24b6d50a3d2e4e..68c8a3ac314ee14dafcf990f8a4939fb63918e3e 100644
--- a/tests/fletch_tests/fletch_test_suite.dart
+++ b/tests/dartino_tests/dartino_test_suite.dart
@@ -8,7 +8,7 @@
/// line) and prints out messages in response (also in JSON, one per line).
///
/// Messages are defined in 'message.dart'.
-library fletch_tests.fletch_test_suite;
+library dartino_tests.dartino_test_suite;
import 'dart:core' hide print;
@@ -29,17 +29,17 @@ import 'dart:async' show
import 'dart:isolate';
-import 'package:fletchc/src/zone_helper.dart' show
+import 'package:dartino_compiler/src/zone_helper.dart' show
runGuarded;
-import 'package:fletchc/src/hub/hub_main.dart' show
+import 'package:dartino_compiler/src/hub/hub_main.dart' show
IsolatePool,
ManagedIsolate;
-import 'package:fletchc/src/worker/developer.dart' show
+import 'package:dartino_compiler/src/worker/developer.dart' show
configFileUri;
-import 'package:fletchc/src/console_print.dart' show
+import 'package:dartino_compiler/src/console_print.dart' show
printToConsole;
import 'messages.dart' show
@@ -68,7 +68,7 @@ Map<String, NoArgFuture> expandedTests;
Sink<Message> messageSink;
main() async {
- int port = const int.fromEnvironment("test.fletch_test_suite.port");
+ int port = const int.fromEnvironment("test.dartino_test_suite.port");
Socket socket = await Socket.connect(InternetAddress.LOOPBACK_IP_V4, port);
messageSink = new SocketSink(socket);
IsolatePool pool = new IsolatePool(isolateMain);
@@ -216,8 +216,8 @@ Future<Message> runTest(String name, NoArgFuture test) async {
}
Future setupGlobalStateForTesting() async {
- tmpdir = await Directory.systemTemp.createTemp("fletch_test_home");
- configFileUri = tmpdir.uri.resolve('.fletch');
+ tmpdir = await Directory.systemTemp.createTemp("dartino_test_home");
+ configFileUri = tmpdir.uri.resolve('.dartino');
printToConsole = printLineOnStdout;
}
« no previous file with comments | « tests/dartino_tests/all_tests.dart ('k') | tests/dartino_tests/dartino_tests.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698