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
This commit is contained in:
parent
aa6725407a
commit
300109e5eb
1 changed files with 2 additions and 0 deletions
|
@ -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(
|
||||
"[]",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue