diff options
| author | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2024-04-15 16:56:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-15 16:56:19 +0100 |
| commit | 723c0e23bcc43baa2f7ad6f6ef60f96b3cf169eb (patch) | |
| tree | 5ae9b339c5909a643b761bb47da12fecc7d6e76f | |
| parent | 4f3a39ba7925fe83d75e0bc7a2c65a200e55f0e4 (diff) | |
| parent | 24dac6cd4545be87ad702b63be7532c92878eee8 (diff) | |
| download | rust-723c0e23bcc43baa2f7ad6f6ef60f96b3cf169eb.tar.gz rust-723c0e23bcc43baa2f7ad6f6ef60f96b3cf169eb.zip | |
Rollup merge of #123957 - RalfJung:create_dir_all_bare, r=joboet
disable create_dir_all_bare test on all(miri, windows)
| -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(), || { |
