about summary refs log tree commit diff
path: root/src/libserialize
diff options
context:
space:
mode:
authorJonathan Turner <jonathandturner@users.noreply.github.com>2016-08-31 13:53:35 -0700
committerGitHub <noreply@github.com>2016-08-31 13:53:35 -0700
commite69d65cc0b8aad069fe978df29b9c6409ab5f309 (patch)
tree11f8d52097a46bd64575df68a70ee1b786fbc030 /src/libserialize
parent6e045cc2be09288e2a5033d24312708fd335b8f4 (diff)
parentf53415fe0ded6c889f89890a0af0cd4066372980 (diff)
downloadrust-e69d65cc0b8aad069fe978df29b9c6409ab5f309.tar.gz
rust-e69d65cc0b8aad069fe978df29b9c6409ab5f309.zip
Rollup merge of #36123 - nagisa:unignore-json-tests, r=alexcrichton
Unignore the json tests on 32-bit platforms

cc #14064

r? @alexcrichton
Diffstat (limited to 'src/libserialize')
-rw-r--r--src/libserialize/json.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libserialize/json.rs b/src/libserialize/json.rs
index 34df594e847..0782601e179 100644
--- a/src/libserialize/json.rs
+++ b/src/libserialize/json.rs
@@ -3592,7 +3592,6 @@ mod tests {
         }
     }
     #[test]
-    #[cfg_attr(target_pointer_width = "32", ignore)] // FIXME(#14064)
     fn test_streaming_parser() {
         assert_stream_equal(
             r#"{ "foo":"bar", "array" : [0, 1, 2, 3, 4, 5], "idents":[null,true,false]}"#,
@@ -3631,7 +3630,6 @@ mod tests {
     }
 
     #[test]
-    #[cfg_attr(target_pointer_width = "32", ignore)] // 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)));
@@ -3715,7 +3713,6 @@ mod tests {
         );
     }
     #[test]
-    #[cfg_attr(target_pointer_width = "32", ignore)] // FIXME(#14064)
     fn test_read_array_streaming() {
         assert_stream_equal(
             "[]",