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

Unified Diff: tests/isolate/package_root_test.dart

Issue 545483002: Per isolate package root. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed test. Created 6 years, 3 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/isolate/isolate.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/package_root_test.dart
diff --git a/tests/isolate/package_root_test.dart b/tests/isolate/package_root_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..2ee6b30aa36ae2afb7c33a1ea47423c439bb8bc1
--- /dev/null
+++ b/tests/isolate/package_root_test.dart
@@ -0,0 +1,36 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'dart:io';
+import 'dart:isolate';
+
+final SPAWN_PACKAGE_ROOT = Uri.parse("otherPackageRoot");
+
+void main([args, port]) {
+ if (port != null) {
+ testPackageRoot(args);
+ return;
+ }
+ var p = new ReceivePort();
+ Isolate.spawnUri(Platform.script,
+ [p.sendPort, Platform.packageRoot],
+ {},
+ packageRoot: SPAWN_PACKAGE_ROOT);
+ p.listen((msg) {
+ p.close();
+ });
+}
+
+
+void testPackageRoot(args) {
+ var parentPackageRoot = args[1];
+ if (parentPackageRoot == Platform.packageRoot) {
+ throw "Got parent package root";
+ }
+ if (Uri.parse(Platform.packageRoot) != SPAWN_PACKAGE_ROOT) {
+ throw "Wrong package root";
+ }
+ args[0].send(null);
+}
+
« no previous file with comments | « tests/isolate/isolate.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698