summaryrefslogtreecommitdiff
path: root/jsmn_test.c
Commit message (Collapse)AuthorAge
* fixed indentation and comments style after mergeSerge A. Zaitsev2014-01-27
|
* Adds checking to unicode characters that are \uXXXX where X is a hexidecimal ↵del65972013-07-19
| | | | | | digit Adds new tests for unicode character coverage
* fixed: invalid object/arrays were passed successfully in tree mode; added ↵Serge A. Zaitsev2012-10-22
| | | | tests for this case
* fixed tests: missing jsmn_init() before parsing; added tests for empty ↵Serge A. Zaitsev2012-10-01
| | | | arrays/objects
* fixed strict mode: space symbols are allowed after primitives; added some ↵Serge A. Zaitsev2012-09-26
| | | | new tests
* tokens array items are now being initialized during allocation, removed ↵Serge A. Zaitsev2012-09-23
| | | | redundant code that significantly slowed down the parser
* fixed: superior node size is now an index, not a pointer (safe to realloc)Serge A. Zaitsev2012-02-02
|
* added reading with small number of tokens test, fixed NOMEM issue #2Serge A. Zaitsev2012-02-02
|
* added test for partial array readingSerge A. Zaitsev2012-02-02
|
* fixed typo, added JSMN_STRICT modeSerge A. Zaitsev2012-02-01
|
* added one more test case for partial string parserSerge A. Zaitsev2012-02-01
|
* tested partial parser for strings, added primitive string parser test, fixed ↵Serge A. Zaitsev2012-02-01
| | | | token allocation
* added tests for primitive types, primitive types now can be stored outside ↵Serge A. Zaitsev2012-02-01
| | | | the objects without braces
* removed JSON string and token array from parser internals, because they must ↵Serge A. Zaitsev2012-02-01
| | | | not be saved between parse() calls
* changed API: parse now is more flexible, but init jsut resets the parser; ↵Serge A. Zaitsev2012-02-01
| | | | added new test macro to compate strings, fixed Makefile
* switched to C unit-tests instead of bashSerge A. Zaitsev2012-02-01