diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-11-29 23:20:10 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-11-29 23:20:10 -0800 |
| commit | f1cbfceefb065e05248b0178031a0041375d5b8a (patch) | |
| tree | 86c416c07d43125b275fb62024f4e725141515bc /src/libstd/rt | |
| parent | dd1184eedb0e0828cea2f18d3fbd6319e981afda (diff) | |
| download | rust-f1cbfceefb065e05248b0178031a0041375d5b8a.tar.gz rust-f1cbfceefb065e05248b0178031a0041375d5b8a.zip | |
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.
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/deque.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
