From 300109e5ebc8b36fc5e8d250e81e44ff9541a84c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 9 May 2014 09:49:30 -0700 Subject: [PATCH] serialize: Ignore two flaky json tests on windows See #14064 for some rationale, but the basic idea is that I suspect that there is an LLVM codegen bug somewhere, and I'm not entirely sure why it's happening intermittently rather than deterministically... cc #14064 --- src/libserialize/json.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libserialize/json.rs b/src/libserialize/json.rs index 29315c458108f..c0787b959913e 100644 --- a/src/libserialize/json.rs +++ b/src/libserialize/json.rs @@ -3098,6 +3098,7 @@ mod tests { } } #[test] + #[ignore(cfg(windows))] // FIXME(#14064) fn test_read_object_streaming() { assert_eq!(last_event("{ "), Error(SyntaxError(EOFWhileParsingObject, 1, 3))); assert_eq!(last_event("{1"), Error(SyntaxError(KeyMustBeAString, 1, 2))); @@ -3169,6 +3170,7 @@ mod tests { ); } #[test] + #[ignore(cfg(windows))] // FIXME(#14064) fn test_read_list_streaming() { assert_stream_equal( "[]",