summaryrefslogtreecommitdiff
path: root/src/sys/ioctl/mod.rs
diff options
context:
space:
mode:
authorXavier L'Heureux <xavier.lheureux@icloud.com>2019-09-12 21:06:43 -0400
committerXavier L'Heureux <dev.xlheureux@gmail.com>2020-05-17 21:05:46 -0400
commit9e5e9344c6918f6e84d2f6d35af736dc5070f340 (patch)
tree2a1357e972479ae907738b7f8cf643d59ed44d35 /src/sys/ioctl/mod.rs
parent57fa56fb30dea6c7f9e54d31e4931a687e533787 (diff)
downloadnix-9e5e9344c6918f6e84d2f6d35af736dc5070f340.zip
Remove temporarily the failing tests for Redox
TODO: Fix them in Relibc
Diffstat (limited to 'src/sys/ioctl/mod.rs')
-rw-r--r--src/sys/ioctl/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/ioctl/mod.rs b/src/sys/ioctl/mod.rs
index 2837233f..3bcdd266 100644
--- a/src/sys/ioctl/mod.rs
+++ b/src/sys/ioctl/mod.rs
@@ -221,11 +221,11 @@
//!
//! # fn main() {}
//! ```
-#[cfg(any(target_os = "android", target_os = "linux"))]
+#[cfg(any(target_os = "android", target_os = "linux", target_os = "redox"))]
#[macro_use]
mod linux;
-#[cfg(any(target_os = "android", target_os = "linux"))]
+#[cfg(any(target_os = "android", target_os = "linux", target_os = "redox"))]
pub use self::linux::*;
#[cfg(any(target_os = "dragonfly",