miloyip / nativejson-benchmark

C/C++ JSON parser/generator benchmark
MIT License
1.97k stars 262 forks source link

Use new StreamWriterBuilder/CharReaderBuilder #64

Closed cdunn2001 closed 7 years ago

cdunn2001 commented 7 years ago

I see these changes in the conformance profile:

@@ -2,21 +2,6 @@

 ## 1. Parse Validation

-* `../data/jsonchecker/fail07.json` is invalid but was mistakenly deemed valid.
-~~~js
-["Comma after the close"],
-~~~
-
-* `../data/jsonchecker/fail08.json` is invalid but was mistakenly deemed valid.
-~~~js
-["Extra close"]]
-~~~
-
-* `../data/jsonchecker/fail10.json` is invalid but was mistakenly deemed valid.
-~~~js
-{"Extra value after close": true} "misplaced quoted value"
-~~~
-
@@ -33,8 +18,18 @@
 break"]
+* `../data/jsonchecker/fail29.json` is invalid but was mistakenly deemed valid.
+~~~js
+[0e]
+~~~
+
+* `../data/jsonchecker/fail30.json` is invalid but was mistakenly deemed valid.
+~~~js
+[0e+]
+~~~
+

-Summary: 28 of 34 are correct.
+Summary: 29 of 34 are correct.
miloyip commented 7 years ago

Thanks