diff options
| author | 许杰友 Jieyou Xu (Joe) <jieyouxu@outlook.com> | 2024-10-09 04:49:27 +0000 |
|---|---|---|
| committer | 许杰友 Jieyou Xu (Joe) <jieyouxu@outlook.com> | 2024-10-09 05:34:49 +0000 |
| commit | fe87487b367e31ec76df3f3124e5d70a0f60a20d (patch) | |
| tree | c4cbfc17a8332f0d6e14d640b9f8f1d786fa5635 | |
| parent | 18deb53874ac4701ba10ebc016cb8cde7a049b82 (diff) | |
| download | rust-fe87487b367e31ec76df3f3124e5d70a0f60a20d.tar.gz rust-fe87487b367e31ec76df3f3124e5d70a0f60a20d.zip | |
Ignore broken-pipe-no-ice on apple for now
| -rw-r--r-- | tests/run-make/broken-pipe-no-ice/rmake.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/run-make/broken-pipe-no-ice/rmake.rs b/tests/run-make/broken-pipe-no-ice/rmake.rs index d1db0bc7368..378c3289cb7 100644 --- a/tests/run-make/broken-pipe-no-ice/rmake.rs +++ b/tests/run-make/broken-pipe-no-ice/rmake.rs @@ -5,6 +5,12 @@ //@ ignore-cross-compile (needs to run test binary) +//@ ignore-apple +// FIXME(#131436): on macOS rustc is still reporting the std broken pipe io error panick but it +// doesn't fail with 101 exit status (it terminates with a wait status of SIGPIPE). It doesn't say +// Internal Compiler Error strangely, but it doesn't even go through normal diagnostic infra. Very +// strange. + #![feature(anonymous_pipe)] use std::io::Read; |
