Skip to content

Commit 0b80057

Browse files
committed
std: fs: skip fs tests on xous
The xous filesystem support is not yet ready for merging. Signed-off-by: Sean Cross <sean@xobs.io>
1 parent 778e803 commit 0b80057

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![stable(feature = "rust1", since = "1.0.0")]
99
#![deny(unsafe_op_in_unsafe_fn)]
1010

11-
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx"))))]
11+
#[cfg(all(test, not(any(target_os = "emscripten", target_env = "sgx", target_os = "xous"))))]
1212
mod tests;
1313

1414
use crate::ffi::OsString;

0 commit comments

Comments
 (0)