From ace66d4b5b8ef904f3f3abae8bb51a89c7173cb4 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 21 May 2020 13:08:44 -0600 Subject: [PATCH] Disable incompatible test on redox --- src/tty/unix.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tty/unix.rs b/src/tty/unix.rs index 038b40c3..97b63bd3 100644 --- a/src/tty/unix.rs +++ b/src/tty/unix.rs @@ -57,6 +57,7 @@ pub fn move_cursor_up(n: usize) -> String { format!("\x1B[{}A", n) } +#[cfg(not(target_os = "redox"))] #[test] /// Compare with the output of `stty size` fn compare_with_stty() {