Skip to content

Commit 300109e

Browse files
committed
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
1 parent aa67254 commit 300109e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/libserialize/json.rs

+2
Original file line numberDiff line numberDiff line change
@@ -3098,6 +3098,7 @@ mod tests {
30983098
}
30993099
}
31003100
#[test]
3101+
#[ignore(cfg(windows))] // FIXME(#14064)
31013102
fn test_read_object_streaming() {
31023103
assert_eq!(last_event("{ "), Error(SyntaxError(EOFWhileParsingObject, 1, 3)));
31033104
assert_eq!(last_event("{1"), Error(SyntaxError(KeyMustBeAString, 1, 2)));
@@ -3169,6 +3170,7 @@ mod tests {
31693170
);
31703171
}
31713172
#[test]
3173+
#[ignore(cfg(windows))] // FIXME(#14064)
31723174
fn test_read_list_streaming() {
31733175
assert_stream_equal(
31743176
"[]",

0 commit comments

Comments
 (0)