Chromium Code Reviews

Unified Diff: tests/isolate/spawn_uri_vm_test.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update spawnUri description. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: tests/isolate/spawn_uri_vm_test.dart
diff --git a/tests/isolate/spawn_uri_vm_test.dart b/tests/isolate/spawn_uri_vm_test.dart
index e9bb0dac7f555658605743eebf34db65ebf0d898..cd905008722e4d08181318d9113f1b2569bac760 100644
--- a/tests/isolate/spawn_uri_vm_test.dart
+++ b/tests/isolate/spawn_uri_vm_test.dart
@@ -13,12 +13,11 @@ import '../../pkg/unittest/lib/unittest.dart';
main() {
test('isolate fromUri - send and reply', () {
ReceivePort port = new ReceivePort();
- port.receive(expectAsync2((msg, _) {
- port.close();
+ port.first.then(expectAsync1((msg) {
expect(msg, equals('re: hi'));
}));
- SendPort s = spawnUri('spawn_uri_child_isolate.dart');
- s.send('hi', port.toSendPort());
+ Isolate.spawnUri(Uri.parse('spawn_uri_child_isolate.dart'),
+ ['hi', port.sendPort]);
});
}

Powered by Google App Engine