diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-05-09 09:49:30 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-09 09:49:30 -0700 |
| commit | 300109e5ebc8b36fc5e8d250e81e44ff9541a84c (patch) | |
| tree | b852a7363ea0571b6ac85a99c4953a606d8947cd | |
| parent | aa6725407ae0a2cb88458e147e76adf8bcae0961 (diff) | |
| download | rust-300109e5ebc8b36fc5e8d250e81e44ff9541a84c.tar.gz rust-300109e5ebc8b36fc5e8d250e81e44ff9541a84c.zip | |
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
| -rw-r--r-- | src/libserialize/json.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libserialize/json.rs b/src/libserialize/json.rs index 29315c45810..c0787b95991 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( "[]", |
