From f1cbfceefb065e05248b0178031a0041375d5b8a Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 29 Nov 2013 23:20:10 -0800 Subject: [PATCH] Ignore a deque test on windows I've seen this fail on windows twice now, and it's not clear to me why it's failing. For now, ignore it on that platform while investigation enuses. --- src/libstd/rt/deque.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/rt/deque.rs b/src/libstd/rt/deque.rs index 94d4523b2e2..bf3a061096a 100644 --- a/src/libstd/rt/deque.rs +++ b/src/libstd/rt/deque.rs @@ -590,6 +590,7 @@ mod tests { } #[test] + #[ignore(cfg(windows))] // apparently windows scheduling is weird? fn no_starvation() { static AMT: int = 10000; static NTHREADS: int = 4;