From f1a4d0cd37536ded13e0d361e888b4e694f90c7f Mon Sep 17 00:00:00 2001 From: Aelin Reidel Date: Mon, 2 Mar 2026 15:49:04 +0100 Subject: [PATCH] library: std: process: skip tests on Hermit Hermit does not yet support spawning processes. --- library/std/src/process.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/std/src/process.rs b/library/std/src/process.rs index 1199403b1d5ab..a682873f969c8 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -156,6 +156,7 @@ target_env = "sgx", target_os = "xous", target_os = "trusty", + target_os = "hermit", )) ))] mod tests;