diff options
| author | Sean Cross <sean@xobs.io> | 2023-01-22 17:58:55 +0800 |
|---|---|---|
| committer | Sean Cross <sean@xobs.io> | 2023-08-22 20:25:38 +0800 |
| commit | 112d101f880bafa2060a5bfa2b65563b8585624b (patch) | |
| tree | 95f65e9cc00424ef08b295e48c1a25f023f122b6 /library/std/src | |
| parent | 0b800577d141759b7b4b65ad3c1c776364f35a32 (diff) | |
| download | rust-112d101f880bafa2060a5bfa2b65563b8585624b.tar.gz rust-112d101f880bafa2060a5bfa2b65563b8585624b.zip | |
std: process: skip tests on xous
Xous does not yet support spawning processes. Signed-off-by: Sean Cross <sean@xobs.io>
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/process.rs b/library/std/src/process.rs index f54d5934175..e28a42a27fc 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -101,7 +101,7 @@ #![stable(feature = "process", since = "1.0.0")] #![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; use crate::io::prelude::*; |
