std: net: skip tests on xous

Network functionality is not yet ready for merging.

Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
Sean Cross 2023-01-22 17:56:38 +08:00
parent 9afc1e958b
commit 778e8038a2
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#![deny(unsafe_op_in_unsafe_fn)]
#[cfg(all(test, not(target_os = "emscripten")))]
#[cfg(all(test, not(any(target_os = "emscripten", target_os = "xous"))))]
mod tests;
use crate::io::prelude::*;

View File

@ -1,4 +1,4 @@
#[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::fmt;