From a2f2671a29431e69e9ffafbca88fdf24ec85aecc Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 8 Nov 2019 14:35:41 +0900 Subject: [PATCH] Temporarily ignore io_timeout:: io_timeout_timedout test on non x86-64 targets --- tests/io_timeout.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/io_timeout.rs b/tests/io_timeout.rs index 85a17ab75..96f86e59b 100644 --- a/tests/io_timeout.rs +++ b/tests/io_timeout.rs @@ -3,6 +3,7 @@ use std::time::Duration; use async_std::io; use async_std::task; +#[cfg_attr(not(target_arch = "x86_64"), ignore)] #[test] #[should_panic(expected = "timed out")] fn io_timeout_timedout() {