| Index: runtime/tests/vm/dart/data_uri_spawn_test.dart
|
| diff --git a/runtime/tests/vm/dart/data_uri_spawn_test.dart b/runtime/tests/vm/dart/data_uri_spawn_test.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3ee0370ea1821a52f8a6d209dff4cc6eb4258988
|
| --- /dev/null
|
| +++ b/runtime/tests/vm/dart/data_uri_spawn_test.dart
|
| @@ -0,0 +1,30 @@
|
| +// Copyright (c) 2015, 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.
|
| +
|
| +import "dart:isolate";
|
| +import "package:unittest/unittest.dart";
|
| +
|
| +Uri toDartDataUri(String source) {
|
| + return Uri.parse("data:application/dart;charset=utf-8,"
|
| + "${Uri.encodeComponent(source)}");
|
| +}
|
| +
|
| +main() {
|
| + test('Simple response', () {
|
| + String source = """
|
| +import "dart:isolate";
|
| +main(List args, SendPort replyPort) {
|
| + print('Child running');
|
| + replyPort.send(42);
|
| +}
|
| +""";
|
| +
|
| + RawReceivePort receivePort;
|
| + receivePort = new RawReceivePort(expectAsync((int message) {
|
| + expect(message, equals(42));
|
| + receivePort.close();
|
| + }));
|
| + Isolate.spawnUri(toDartDataUri(source), [], receivePort.sendPort);
|
| + });
|
| +}
|
|
|