auto merge of #14065 : alexcrichton/rust/ignore-flaky-windows-test, r=brson
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:
commit
5b4774dafc
@ -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…
Reference in New Issue
Block a user