Closed
Description
Hello, this is your friendly neighborhood mergebot.
After merging PR #79167, I observed that the tool miri has failing tests.
A follow-up PR to the repository https://github.com/rust-lang/miri is needed to fix the fallout.
cc @m-ou-se, do you think you would have time to do the follow-up work?
If so, that would be great!
Activity
m-ou-se commentedon Nov 18, 2020
That PR was a rollup. Without having looked at any logs,
I'm guessing this is caused byEdit: Oh uh, nope, sorry, had a different change in mind. Will take a closer look. :)m-ou-se commentedon Nov 18, 2020
Ah, the problem is #78785
The call to
getrandom()
was changed fromsyscall(SYS_getrandom, ..)
to trydlsym("getrandom")
first. Returning null there would work fine, as it still falls back tosyscall(SYS_getrandom, ..)
.Edit: And the same for
statx
.miri
no longer builds after rust-lang/rust#79002 #79195