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

Unified Diff: tests/isolate/spawn_function_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_function_negative_test.dart ('k') | tests/isolate/spawn_uri_child_isolate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/spawn_function_test.dart
diff --git a/tests/isolate/spawn_function_test.dart b/tests/isolate/spawn_function_test.dart
index 6829fd1ce865f8193f7c1e7f344d8a3e9fcf9fd7..a452477065941439bfbe97b1f06d38ec947d7b44 100644
--- a/tests/isolate/spawn_function_test.dart
+++ b/tests/isolate/spawn_function_test.dart
@@ -7,19 +7,19 @@ library spawn_tests;
import 'dart:isolate';
import '../../pkg/unittest/lib/unittest.dart';
-child() {
- port.receive((msg, reply) => reply.send('re: $msg'));
+child(args) {
+ var msg = args[0];
+ var reply = args[1];
+ reply.send('re: $msg');
}
main() {
test('message - reply chain', () {
ReceivePort port = new ReceivePort();
- port.receive(expectAsync2((msg, _) {
+ Isolate.spawn(child, ['hi', port.sendPort]);
+ port.listen(expectAsync1((msg) {
port.close();
expect(msg, equals('re: hi'));
}));
-
- SendPort s = spawnFunction(child);
- s.send('hi', port.toSendPort());
});
}
« no previous file with comments | « tests/isolate/spawn_function_negative_test.dart ('k') | tests/isolate/spawn_uri_child_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698