about summary refs log tree commit diff
path: root/library/std/tests/create_dir_all_bare.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-04-15 10:15:14 +0200
committerRalf Jung <post@ralfj.de>2024-04-15 10:15:14 +0200
commit24dac6cd4545be87ad702b63be7532c92878eee8 (patch)
tree6ba3b6f92dce19de8d4d3c68420b8ddf635b73a2 /library/std/tests/create_dir_all_bare.rs
parenta8a88fe5243cbeb37d8a9de8c5ca63136c0604b0 (diff)
downloadrust-24dac6cd4545be87ad702b63be7532c92878eee8.tar.gz
rust-24dac6cd4545be87ad702b63be7532c92878eee8.zip
disable create_dir_all_bare on all(miri, windows)
Diffstat (limited to 'library/std/tests/create_dir_all_bare.rs')
-rw-r--r--library/std/tests/create_dir_all_bare.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/tests/create_dir_all_bare.rs b/library/std/tests/create_dir_all_bare.rs
index fe789323f97..fd2a7f906f8 100644
--- a/library/std/tests/create_dir_all_bare.rs
+++ b/library/std/tests/create_dir_all_bare.rs
@@ -31,6 +31,7 @@ impl Drop for CurrentDir {
 }
 
 #[test]
+#[cfg_attr(all(miri, windows), ignore)] // File system access on Windows not supported by Miri
 fn create_dir_all_bare() {
     let tmpdir = common::tmpdir();
     CurrentDir::with(tmpdir.path(), || {