diff options
| author | Ralf Jung <post@ralfj.de> | 2024-04-15 10:15:14 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-04-15 10:15:14 +0200 |
| commit | 24dac6cd4545be87ad702b63be7532c92878eee8 (patch) | |
| tree | 6ba3b6f92dce19de8d4d3c68420b8ddf635b73a2 /library/std/tests/create_dir_all_bare.rs | |
| parent | a8a88fe5243cbeb37d8a9de8c5ca63136c0604b0 (diff) | |
| download | rust-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.rs | 1 |
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(), || { |
