From 24dac6cd4545be87ad702b63be7532c92878eee8 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 15 Apr 2024 10:15:14 +0200 Subject: [PATCH] disable create_dir_all_bare on all(miri, windows) --- library/std/tests/create_dir_all_bare.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/std/tests/create_dir_all_bare.rs b/library/std/tests/create_dir_all_bare.rs index fe789323f97c0..fd2a7f906f839 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(), || {