summaryrefslogtreecommitdiffstats
path: root/src/json_test.c
AgeCommit message (Collapse)Author
2018-02-27patch 8.0.1550: various small problems in source filesv8.0.1550Bram Moolenaar
Problem: Various small problems in source files. Solution: Fix the problems.
2017-01-22patch 8.0.0216: decoding js style json may failv8.0.0216Bram Moolenaar
Problem: When decoding JSON with a JS style object the JSON test may use a NULL pointer. (Coverity) Solution: Check for a NULL pointer.
2017-01-11patch 8.0.0171: JS style JSON does not support single quotesv8.0.0171Bram Moolenaar
Problem: JS style JSON does not support single quotes. Solution: Allow for single quotes. (Yasuhiro Matsumoto, closes #1371)
2016-08-29patch 7.4.2293v7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-02-07patch 7.4.1279v7.4.1279Bram Moolenaar
Problem: jsonencode() is not producing strict JSON. Solution: Add jsencode() and jsdecode(). Make jsonencode() and jsondecode() strict.
2016-02-02patch 7.4.1242v7.4.1242Bram Moolenaar
Problem: json_test fails without the eval feature. Solution: Add #ifdef.
2016-02-02patch 7.4.1238v7.4.1238Bram Moolenaar
Problem: Can't handle two messages right after each other. Solution: Find the end of the JSON. Read more when incomplete. Add a C test for the JSON decoding.