about summary refs log tree commit diff
path: root/tests/ui/runtime/on-broken-pipe
AgeCommit message (Collapse)AuthorLines
2025-09-19Fix test suite in iOS/tvOS/watchOS/visionOS simulatorMads Marquart-0/+2
2025-07-23Add `ignore-backends` annotations in failing GCC backend ui testsGuillaume Gomez-0/+1
2025-03-25compiletest: Support matching on diagnostics without a spanVadim Petrochenkov-0/+6
2025-03-12Use sa_sigaction instead of sa_union.__su_sigaction for AIX.Xing Xue-16/+2
2025-01-21remove support for the #[start] attributeRalf Jung-7/+8
2024-12-06Replace sa_sigaction with sa_union.__su_sigaction for AIX.Xing Xue-2/+16
2024-05-20Add only-unix to sigpipe testsBen Kimock-0/+5
2024-05-02Change `SIGPIPE` ui from `#[unix_sigpipe = "..."]` to `-Zon-broken-pipe=...`Martin Nordholts-0/+219
In the stabilization attempt of `#[unix_sigpipe = "sig_dfl"]`, a concern was raised related to using a language attribute for the feature: Long term, we want `fn lang_start()` to be definable by any crate, not just libstd. Having a special language attribute in that case becomes awkward. So as a first step towards towards the next stabilization attempt, this PR changes the `#[unix_sigpipe = "..."]` attribute to a compiler flag `-Zon-broken-pipe=...` to remove that concern, since now the language is not "contaminated" by this feature. Another point was also raised, namely that the ui should not leak **how** it does things, but rather what the **end effect** is. The new flag uses the proposed naming. This is of course something that can be iterated on further before stabilization.