We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 49757dd + 45d800c commit a4a9eb4Copy full SHA for a4a9eb4
rust-version
@@ -1 +1 @@
1
-a015919e54c60b1b2bec7a98dec478cfc4a48f4e
+9d82de19dfae60e55c291f5f28e28cfc2c1b9630
tests/pass/shims/fs.rs
@@ -28,7 +28,8 @@ fn main() {
28
test_from_raw_os_error();
29
test_file_clone();
30
// Windows file handling is very incomplete.
31
- if cfg!(not(windows)) {
+ // FIXME: read_dir broken on FreeBSD (https://github.com/rust-lang/miri/issues/4587)
32
+ if cfg!(not(windows)) && !cfg!(target_os = "freebsd") {
33
test_file_set_len();
34
test_file_sync();
35
test_rename();
0 commit comments