| Index: runtime/tests/vm/dart/isolate_mirror_remote_test.dart
|
| diff --git a/runtime/tests/vm/dart/isolate_mirror_remote_test.dart b/runtime/tests/vm/dart/isolate_mirror_remote_test.dart
|
| deleted file mode 100644
|
| index f3fff3a0b1da06cce051549222ac81ea08ee212d..0000000000000000000000000000000000000000
|
| --- a/runtime/tests/vm/dart/isolate_mirror_remote_test.dart
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -//
|
| -// Dart test program for checking implemention of MirrorSystem when
|
| -// inspecting a remote isolate.
|
| -
|
| -library isolate_mirror_local_test;
|
| -
|
| -import "package:expect/expect.dart";
|
| -import 'dart:isolate';
|
| -import 'dart:mirrors';
|
| -
|
| -void isolateMain() {
|
| - port.receive(
|
| - (msg, replyPort) {
|
| - Expect.fail('Received unexpected message $msg in remote isolate.');
|
| - });
|
| -}
|
| -
|
| -void testMirrorSystem(MirrorSystem mirror) {
|
| - Expect.fail('Should not reach here. Remote isolates not implemented.');
|
| -}
|
| -
|
| -void main() {
|
| - SendPort sp = spawnFunction(isolateMain);
|
| - try {
|
| - mirrorSystemOf(sp).then(testMirrorSystem);
|
| - Expect.fail('Should not reach here. Remote isolates not implemented.');
|
| - } catch (exception) {
|
| - Expect.isTrue(exception is UnimplementedError);
|
| - }
|
| -}
|
|
|