| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 // OtherResources=process_detached_script.dart |
| 6 |
| 5 // Process test program to test detached processes. | 7 // Process test program to test detached processes. |
| 6 | 8 |
| 7 import 'dart:async'; | 9 import 'dart:async'; |
| 8 import 'dart:io'; | 10 import 'dart:io'; |
| 9 | 11 |
| 10 import "package:async_helper/async_helper.dart"; | 12 import "package:async_helper/async_helper.dart"; |
| 11 import "package:expect/expect.dart"; | 13 import "package:expect/expect.dart"; |
| 12 | 14 |
| 13 import "process_test_util.dart"; | 15 import "process_test_util.dart"; |
| 14 | 16 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 asyncEnd(); | 77 asyncEnd(); |
| 76 }); | 78 }); |
| 77 }); | 79 }); |
| 78 } | 80 } |
| 79 | 81 |
| 80 main() { | 82 main() { |
| 81 test(); | 83 test(); |
| 82 testWithStdio(); | 84 testWithStdio(); |
| 83 testFailure(); | 85 testFailure(); |
| 84 } | 86 } |
| OLD | NEW |