| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Regression test for http://dartbug.com/7191. | 5 // Regression test for http://dartbug.com/7191. |
| 6 | 6 |
| 7 // Starts a sub-process which in turn starts another sub-process and then closes | 7 // Starts a sub-process which in turn starts another sub-process and then closes |
| 8 // its standard output. If handles are incorrectly inherited on Windows, this | 8 // its standard output. If handles are incorrectly inherited on Windows, this |
| 9 // will lead to a situation where the stdout of the first sub-process is never | 9 // will lead to a situation where the stdout of the first sub-process is never |
| 10 // closed which will make this test hang. | 10 // closed which will make this test hang. |
| 11 | 11 |
| 12 import 'dart:io'; | 12 import 'dart:io'; |
| 13 import 'dart:isolate'; | 13 import 'dart:isolate'; |
| 14 import 'package:path/path.dart'; |
| 14 | 15 |
| 15 main() { | 16 main() { |
| 16 var port = new ReceivePort(); | 17 var port = new ReceivePort(); |
| 17 var executable = Platform.executable; | 18 var executable = Platform.executable; |
| 18 var scriptDir = new Path(Platform.script).directoryPath; | 19 var script = join(dirname(Platform.script), 'regress_7191_script.dart'); |
| 19 var script = scriptDir.append('regress_7191_script.dart').toNativePath(); | |
| 20 Process.start(executable, [script]).then((process) { | 20 Process.start(executable, [script]).then((process) { |
| 21 process.stdin.add([0]); | 21 process.stdin.add([0]); |
| 22 process.stdout.listen((_) { }, | 22 process.stdout.listen((_) { }, |
| 23 onDone: () { process.stdin.add([0]); }); | 23 onDone: () { process.stdin.add([0]); }); |
| 24 process.stderr.listen((_) { }); | 24 process.stderr.listen((_) { }); |
| 25 process.exitCode.then((exitCode) { | 25 process.exitCode.then((exitCode) { |
| 26 port.close(); | 26 port.close(); |
| 27 if (exitCode != 0) throw "Bad exit code"; | 27 if (exitCode != 0) throw "Bad exit code"; |
| 28 }); | 28 }); |
| 29 }); | 29 }); |
| 30 } | 30 } |
| OLD | NEW |