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

Unified Diff: tests/isolate/spawn_uri_multi_test.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 2 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/spawn_uri_child_isolate.dart ('k') | tests/isolate/spawn_uri_nested_child1_vm_isolate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/spawn_uri_multi_test.dart
diff --git a/tests/isolate/spawn_uri_multi_test.dart b/tests/isolate/spawn_uri_multi_test.dart
index fc95962dc1246604293ce685cf1ddeb0bcc961e3..5815ec8e80bb9fee6e0392f4df8ab8b3a20dd318 100644
--- a/tests/isolate/spawn_uri_multi_test.dart
+++ b/tests/isolate/spawn_uri_multi_test.dart
@@ -17,15 +17,14 @@ import 'spawn_uri_child_isolate.dart';
main() {
test('isolate fromUri - negative test', () {
ReceivePort port = new ReceivePort();
- port.receive(expectAsync2((msg, _) {
+ port.first.then(expectAsync1((msg) {
String expectedMessage = 're: hi';
// Should be hi, not hello.
expectedMessage = 're: hello'; /// 01: runtime error
expect(msg, equals(expectedMessage));
- port.close();
}));
- 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);
});
}
« no previous file with comments | « tests/isolate/spawn_uri_child_isolate.dart ('k') | tests/isolate/spawn_uri_nested_child1_vm_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698