Improved testing for Infinity
authorJlguardi <jlguardi@gmail.com>
Fri, 3 Nov 2017 08:51:16 +0000 (09:51 +0100)
committerJlguardi <jlguardi@gmail.com>
Fri, 3 Nov 2017 08:51:16 +0000 (09:51 +0100)
tests/test_parse.c
tests/test_parse.expected

index 8808d0fa61baf432e87b414190633b00961d330e..f6b5c03e87c199e67d58992c5c8401b4f336596b 100644 (file)
@@ -131,7 +131,7 @@ static void test_basic_parse()
        printf("new_obj.to_string()=%s\n", json_object_to_json_string(new_obj));
        json_object_put(new_obj);
 
-       new_obj = json_tokener_parse("{ \"abc\": 12, \"foo\": \"bar\", \"bool0\": false, \"bool1\": true, \"arr\": [ 1, 2, 3, null, 5 ] }");
+       new_obj = json_tokener_parse("{ \"abc\": 12, \"foo\": \"bar\", \"bool0\": false, \"bool1\": true, \"arr\": [ 1, 2, 3, null, 5 ], \"inf\": Infinity, \"-inf\": -Infinity, \"nan\": NaN, \"def\" : -0.22, \"hij\": 0.31 }");
        printf("new_obj.to_string()=%s\n", json_object_to_json_string(new_obj));
        json_object_put(new_obj);
 }
index d49cbbb18e018126c5a40b58c650eadfaeb1e970..b8badda5da5ce8095b057f7b9cd5f6255f9dc7e8 100644 (file)
@@ -24,7 +24,7 @@ new_obj.to_string()={ }
 new_obj.to_string()={ "foo": "bar" }
 new_obj.to_string()={ "foo": "bar", "baz": null, "bool0": true }
 new_obj.to_string()={ "foo": [ null, "foo" ] }
-new_obj.to_string()={ "abc": 12, "foo": "bar", "bool0": false, "bool1": true, "arr": [ 1, 2, 3, null, 5 ] }
+new_obj.to_string()={ "abc": 12, "foo": "bar", "bool0": false, "bool1": true, "arr": [ 1, 2, 3, null, 5 ], "inf": Infinity, "-inf": -Infinity, "nan": NaN, "def": -0.22, "hij": 0.31 }
 ==================================
 json_tokener_parse_versbose() OK
 ==================================