Skip to content

Commit e69d65c

Browse files
author
Jonathan Turner
authored
Rollup merge of #36123 - nagisa:unignore-json-tests, r=alexcrichton
Unignore the json tests on 32-bit platforms cc #14064 r? @alexcrichton
2 parents 6e045cc + f53415f commit e69d65c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/libserialize/json.rs

-3
Original file line numberDiff line numberDiff line change
@@ -3592,7 +3592,6 @@ mod tests {
35923592
}
35933593
}
35943594
#[test]
3595-
#[cfg_attr(target_pointer_width = "32", ignore)] // FIXME(#14064)
35963595
fn test_streaming_parser() {
35973596
assert_stream_equal(
35983597
r#"{ "foo":"bar", "array" : [0, 1, 2, 3, 4, 5], "idents":[null,true,false]}"#,
@@ -3631,7 +3630,6 @@ mod tests {
36313630
}
36323631

36333632
#[test]
3634-
#[cfg_attr(target_pointer_width = "32", ignore)] // FIXME(#14064)
36353633
fn test_read_object_streaming() {
36363634
assert_eq!(last_event("{ "), Error(SyntaxError(EOFWhileParsingObject, 1, 3)));
36373635
assert_eq!(last_event("{1"), Error(SyntaxError(KeyMustBeAString, 1, 2)));
@@ -3715,7 +3713,6 @@ mod tests {
37153713
);
37163714
}
37173715
#[test]
3718-
#[cfg_attr(target_pointer_width = "32", ignore)] // FIXME(#14064)
37193716
fn test_read_array_streaming() {
37203717
assert_stream_equal(
37213718
"[]",

0 commit comments

Comments
 (0)