1
Fork 0

std: process: skip tests on xous

Xous does not yet support spawning processes.

Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
Sean Cross 2023-01-22 17:58:55 +08:00
parent 0b800577d1
commit 112d101f88

View file

@ -101,7 +101,7 @@
#![stable(feature = "process", since = "1.0.0")] #![stable(feature = "process", since = "1.0.0")]
#![deny(unsafe_op_in_unsafe_fn)] #![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; mod tests;
use crate::io::prelude::*; use crate::io::prelude::*;