From 0b800577d141759b7b4b65ad3c1c776364f35a32 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Sun, 22 Jan 2023 17:58:22 +0800 Subject: [PATCH] std: fs: skip fs tests on xous The xous filesystem support is not yet ready for merging. Signed-off-by: Sean Cross --- library/std/src/fs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/fs.rs b/library/std/src/fs.rs index a7e65305386..370cec7734a 100644 --- a/library/std/src/fs.rs +++ b/library/std/src/fs.rs @@ -8,7 +8,7 @@ #![stable(feature = "rust1", since = "1.0.0")] #![deny(unsafe_op_in_unsafe_fn)] -#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx"))))] +#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx", target_os = "xous"))))] mod tests; use crate::ffi::OsString;