Skip to content

Commit 778e803

Browse files
committed
std: net: skip tests on xous
Network functionality is not yet ready for merging. Signed-off-by: Sean Cross <sean@xobs.io>
1 parent 9afc1e9 commit 778e803

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/net/tcp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![deny(unsafe_op_in_unsafe_fn)]
22

3-
#[cfg(all(test, not(target_os = "emscripten")))]
3+
#[cfg(all(test, not(any(target_os = "emscripten", target_os = "xous"))))]
44
mod tests;
55

66
use crate::io::prelude::*;

library/std/src/net/udp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx"))))]
1+
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx", target_os = "xous"))))]
22
mod tests;
33

44
use crate::fmt;

0 commit comments

Comments
 (0)