From a3bf4f817049b16264959ca7f8328580acda2b8f Mon Sep 17 00:00:00 2001 From: Aelin Reidel Date: Mon, 2 Mar 2026 16:03:08 +0100 Subject: [PATCH] library: std: fs: skip tests on Hermit The tests make use of symlinks, which are not currently supported on Hermit. --- library/std/src/fs.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/std/src/fs.rs b/library/std/src/fs.rs index cf6f9594c0027..85f39ed4bfc08 100644 --- a/library/std/src/fs.rs +++ b/library/std/src/fs.rs @@ -37,6 +37,7 @@ target_env = "sgx", target_os = "xous", target_os = "trusty", + target_os = "hermit", )) ))] mod tests;