Skip to content

Rollup of 8 pull requests #122303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 16 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
0b55b01
ensure that sysroot is properly set for cross-targets
onur-ozkan Mar 8, 2024
93a807f
[bootstrap] Move the split-debuginfo setting to the per-target section
TimNN Feb 28, 2024
1dd47e0
disable OOM test in Miri
RalfJung Mar 10, 2024
93049be
io::Read trait: make it more clear when we are adressing implementati…
RalfJung Mar 10, 2024
aa9145e
use Instance::expect_resolve() instead of unwraping Instance::resolve()
RalfJung Mar 10, 2024
7d99e80
MIR printing: print the path of uneval'd const; refer to promoteds in…
RalfJung Mar 10, 2024
ee428c5
diagnostics: Do not suggest using `#[unix_sigpipe]` without a value
Enselic Mar 10, 2024
89ed992
bootstrap: document what the triples in 'Build' mean
RalfJung Mar 10, 2024
8f9bb6c
Rollup merge of #121754 - TimNN:split-target, r=Mark-Simulacrum
matthiaskrgr Mar 10, 2024
a172eb0
Rollup merge of #122205 - onur-ozkan:incorrect-sysroot-for-target, r=…
matthiaskrgr Mar 10, 2024
a25439f
Rollup merge of #122275 - RalfJung:std-oom, r=workingjubilee
matthiaskrgr Mar 10, 2024
9d2841b
Rollup merge of #122276 - RalfJung:io-read, r=Nilstrieb
matthiaskrgr Mar 10, 2024
d5e5232
Rollup merge of #122286 - RalfJung:resolve, r=compiler-errors
matthiaskrgr Mar 10, 2024
673f7af
Rollup merge of #122290 - RalfJung:mir-printing, r=compiler-errors
matthiaskrgr Mar 10, 2024
00c7ef8
Rollup merge of #122293 - Enselic:no-bare-unix_sigpipe, r=fmease
matthiaskrgr Mar 10, 2024
c770ce4
Rollup merge of #122297 - RalfJung:bootstrap-build, r=onur-ozkan
matthiaskrgr Mar 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
disable OOM test in Miri
  • Loading branch information
RalfJung committed Mar 10, 2024
commit 1dd47e0a17c07b1efd420c95873fab0ff5e5d0ce
2 changes: 2 additions & 0 deletions library/std/src/io/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,8 @@ fn read_buf_full_read() {
}

#[test]
// Miri does not support signalling OOM
#[cfg_attr(miri, ignore)]
// 64-bit only to be sure the allocator will fail fast on an impossible to satsify size
#[cfg(target_pointer_width = "64")]
fn try_oom_error() {
Expand Down