Merge pull request #4588 from RalfJung/rustup

rustup
This commit is contained in:
Ralf Jung 2025-09-16 09:23:48 +00:00 committed by GitHub
commit 4b35fed74a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -1 +1 @@
a015919e54c60b1b2bec7a98dec478cfc4a48f4e
9d82de19dfae60e55c291f5f28e28cfc2c1b9630

View file

@ -28,7 +28,8 @@ fn main() {
test_from_raw_os_error();
test_file_clone();
// Windows file handling is very incomplete.
if cfg!(not(windows)) {
// FIXME: read_dir broken on FreeBSD (https://github.com/rust-lang/miri/issues/4587)
if cfg!(not(windows)) && !cfg!(target_os = "freebsd") {
test_file_set_len();
test_file_sync();
test_rename();