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

Side by Side Diff: runtime/tests/vm/dart/isolate_mirror_remote_test.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload due to error (500). Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Dart test program for checking implemention of MirrorSystem when 5 // Dart test program for checking implemention of MirrorSystem when
6 // inspecting a remote isolate. 6 // inspecting a remote isolate.
7 7
8 library isolate_mirror_local_test; 8 library isolate_mirror_local_test;
9 9
10 import "package:expect/expect.dart"; 10 import "package:expect/expect.dart";
11 import 'dart:isolate'; 11 import 'dart:isolate';
12 import 'dart:mirrors'; 12 import 'dart:mirrors';
13 13
14 void isolateMain() { 14 void isolateMain(SendPort replyTo) {
15 port.receive( 15 var port = new ReceivePort();
16 (msg, replyPort) { 16 replyTo.send(port.sendPort);
17 Expect.fail('Received unexpected message $msg in remote isolate.');
18 });
19 } 17 }
20 18
21 void testMirrorSystem(MirrorSystem mirror) { 19 void testMirrorSystem(MirrorSystem mirror) {
22 Expect.fail('Should not reach here. Remote isolates not implemented.'); 20 Expect.fail('Should not reach here. Remote isolates not implemented.');
23 } 21 }
24 22
25 void main() { 23 void main() {
26 SendPort sp = spawnFunction(isolateMain); 24 var response = new ReceivePort();
27 try { 25 Isolate.spawn(isolateMain, response.sendPort);
28 mirrorSystemOf(sp).then(testMirrorSystem); 26 response.first.then((sp) {
29 Expect.fail('Should not reach here. Remote isolates not implemented.'); 27 try {
30 } catch (exception) { 28 mirrorSystemOf(sp).then(testMirrorSystem);
31 Expect.isTrue(exception is UnimplementedError); 29 Expect.fail('Should not reach here. Remote isolates not implemented.');
32 } 30 } catch (exception) {
31 Expect.isTrue(exception is UnimplementedError);
32 }
33 });
33 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698