summaryrefslogtreecommitdiff
path: root/testchar.c
Commit message (Collapse)AuthorAgeFilesLines
* parser: Deprecate more internal functionsNick Wellnhofer2023-04-261-0/+2
|
* testchar: Fix return value in testUserEncodingNick Wellnhofer2023-04-211-3/+4
|
* testchar: Add test for memory pull parser with encodingNick Wellnhofer2023-04-201-0/+57
|
* error: Limit number of parser errorsNick Wellnhofer2022-12-271-0/+4
| | | | | | | Reporting errors is expensive and some abusive test cases can generate an error for each invalid input byte. This causes the parser to spend most of the time with error handling. Limit the number of errors and warnings to 100.
* buf: Deprecate static/immutable buffersNick Wellnhofer2022-11-201-10/+14
|
* Consolidate private header filesNick Wellnhofer2022-08-261-2/+1
| | | | | | | | | | | Private functions were previously declared - in header files in the root directory - in public headers guarded with IN_LIBXML - in libxml.h - redundantly in source files that used them. Consolidate all private header files in include/private.
* Make testchar return an error on failureTony Tascioglu2022-04-031-46/+111
|
* Add explicit casts in testchar.cNick Wellnhofer2022-01-251-10/+10
| | | | Avoids integer conversion warnings with UBSan.
* Large batch of typo fixesJared Yanovich2019-09-301-2/+2
| | | | Closes #109.
* Big space and tab cleanupDaniel Veillard2012-09-111-6/+6
| | | | Remove all space before tabs and space and tabs at end of lines.
* Swicth the test program for characters to new input buffersDaniel Veillard2012-07-231-3/+5
| | | | | it was manipulating the buffer content and structures directly this cleans it up
* add a new regression test program for testing character ranges and UTF8Daniel Veillard2008-07-241-0/+615
* Makefile.am testchar.c Makefile.tests README.tests: add a new regression test program for testing character ranges and UTF8 encoding/decoding Daniel svn path=/trunk/; revision=3754