From 8548689af21e916b17fa96b00d742717c3c51a5e Mon Sep 17 00:00:00 2001 From: Raoul Strackx Date: Fri, 28 Jul 2023 14:17:35 +0200 Subject: [PATCH] Fix issue_15149 test for the SGX target --- library/std/tests/process_spawning.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/std/tests/process_spawning.rs b/library/std/tests/process_spawning.rs index 52e5b55fb9d44..46dc9ff00bd0d 100644 --- a/library/std/tests/process_spawning.rs +++ b/library/std/tests/process_spawning.rs @@ -1,3 +1,5 @@ +#![cfg(not(target_env="sgx"))] + use std::env; use std::fs; use std::process;