Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 112d101

Browse files
committed
std: process: skip tests on xous
Xous does not yet support spawning processes. Signed-off-by: Sean Cross <sean@xobs.io>
1 parent 0b80057 commit 112d101

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
#![stable(feature = "process", since = "1.0.0")]
102102
#![deny(unsafe_op_in_unsafe_fn)]
103103

104-
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx"))))]
104+
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx", target_os = "xous"))))]
105105
mod tests;
106106

107107
use crate::io::prelude::*;

0 commit comments

Comments
 (0)