| Index: tests/standalone/src/io/ProcessBrokenPipeTest.dart
|
| diff --git a/tests/standalone/src/io/ProcessBrokenPipeTest.dart b/tests/standalone/src/io/ProcessBrokenPipeTest.dart
|
| index 142496580a4241bc2e3b83723d6bd49f10d2b8e8..434e98572af0f131bccffd56decb2491cfea0c02 100644
|
| --- a/tests/standalone/src/io/ProcessBrokenPipeTest.dart
|
| +++ b/tests/standalone/src/io/ProcessBrokenPipeTest.dart
|
| @@ -12,6 +12,9 @@ main() {
|
| // Running dart without arguments makes it close right away.
|
| Process process = new Process.start(getDartFileName(), []);
|
|
|
| + // Ignore error on stdin.
|
| + process.stdin.onError = (e) => null;
|
| +
|
| // Write to the stdin after the process is terminated to test
|
| // writing to a broken pipe.
|
| process.onExit = (code) {
|
|
|