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

Side by Side Diff: tests/isolate/scenarios/automatic_resolution_root/package_resolve_test.dart

Issue 1585503003: Fix static warning in test: (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'dart:io'; 5 import 'dart:io';
6 import 'dart:isolate'; 6 import 'dart:isolate';
7 7
8 final PACKAGE_URI = "package:foo/bar.dart"; 8 final PACKAGE_URI = "package:foo/bar.dart";
9 9
10 void main([args, port]) async { 10 main([args, port]) async {
11 if (port != null) { 11 if (port != null) {
12 testPackageResolution(port); 12 testPackageResolution(port);
13 return; 13 return;
14 } 14 }
15 var p = new RawReceivePort(); 15 var p = new RawReceivePort();
16 Isolate.spawnUri(Platform.script, 16 Isolate.spawnUri(Platform.script,
17 [], 17 [],
18 p.sendPort, 18 p.sendPort,
19 automaticPackageResolution: true); 19 automaticPackageResolution: true);
20 p.handler = (msg) { 20 p.handler = (msg) {
(...skipping 25 matching lines...) Expand all
46 var resolvedPkg = await Isolate.resolvePackageUri(Uri.parse(PACKAGE_URI)); 46 var resolvedPkg = await Isolate.resolvePackageUri(Uri.parse(PACKAGE_URI));
47 print("Spawned isolate's package root flag: $packageRootStr"); 47 print("Spawned isolate's package root flag: $packageRootStr");
48 print("Spawned isolate's package config flag: $packageConfigStr"); 48 print("Spawned isolate's package config flag: $packageConfigStr");
49 print("Spawned isolate's loaded package root: $packageRoot"); 49 print("Spawned isolate's loaded package root: $packageRoot");
50 print("Spawned isolate's resolved package path: $resolvedPkg"); 50 print("Spawned isolate's resolved package path: $resolvedPkg");
51 port.send([packageRoot?.toString(), resolvedPkg?.toString()]); 51 port.send([packageRoot?.toString(), resolvedPkg?.toString()]);
52 } catch (e, s) { 52 } catch (e, s) {
53 port.send("$e\n$s\n"); 53 port.send("$e\n$s\n");
54 } 54 }
55 } 55 }
OLDNEW
« no previous file with comments | « tests/isolate/package_root_test.dart ('k') | tests/isolate/scenarios/automatic_resolution_spec/package_resolve_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698