Skip to content

Commit 2e02f6e

Browse files
committed
auto merge of #14178 : alexcrichton/rust/more-ignores, r=brson
It was thought that these failures only happened on windows, turns out they happen on any 32-bit machine. cc #14064
2 parents e441473 + af00c57 commit 2e02f6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libserialize/json.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3098,7 +3098,7 @@ mod tests {
30983098
}
30993099
}
31003100
#[test]
3101-
#[ignore(cfg(windows))] // FIXME(#14064)
3101+
#[ignore(cfg(target_word_size = "32"))] // FIXME(#14064)
31023102
fn test_read_object_streaming() {
31033103
assert_eq!(last_event("{ "), Error(SyntaxError(EOFWhileParsingObject, 1, 3)));
31043104
assert_eq!(last_event("{1"), Error(SyntaxError(KeyMustBeAString, 1, 2)));
@@ -3170,7 +3170,7 @@ mod tests {
31703170
);
31713171
}
31723172
#[test]
3173-
#[ignore(cfg(windows))] // FIXME(#14064)
3173+
#[ignore(cfg(target_word_size = "32"))] // FIXME(#14064)
31743174
fn test_read_list_streaming() {
31753175
assert_stream_equal(
31763176
"[]",

0 commit comments

Comments
 (0)