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..df3eae7ef50e167ec64bdcda13c766933d49cfb1 |
--- /dev/null |
+++ b/tests/isolate/package_root_test.dart |
@@ -0,0 +1,34 @@ |
+// Copyright (c) 2015, 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 = "file:///no/such/file/"; |
+ |
+void main([args, port]) async { |
+ if (port != null) { |
+ testPackageRoot(port); |
+ return; |
+ } |
+ var p = new RawReceivePort(); |
+ Isolate.spawnUri(Platform.script, |
+ [], |
+ p.sendPort, |
+ packageRoot: Uri.parse(SPAWN_PACKAGE_ROOT)); |
+ p.handler = (msg) { |
+ p.close(); |
+ if (msg != SPAWN_PACKAGE_ROOT) { |
+ throw "Bad package root in child isolate: $msg"; |
+ } |
+ print("SUCCESS"); |
+ }; |
+ print("Spawning isolate's package root: ${await Isolate.packageRoot}"); |
+} |
+ |
+testPackageRoot(port) async { |
+ var packageRoot = await Isolate.packageRoot; |
+ print("Spawned isolate's package root: $packageRoot"); |
+ port.send(packageRoot.toString()); |
+} |