summaryrefslogtreecommitdiff
path: root/runsuite.c
Commit message (Collapse)AuthorAgeFilesLines
* Restore code for Windows compilationDaniel Veillard2012-05-231-0/+4
| | | | | Try to keep as close to rc1 but still allow the change from Roumen for mingw
* use mingw C99 compatible functions {v}snprintf instead those from MSVC runtimeRoumen Petrov2012-05-211-9/+0
|
* Fixing assorted potential problems raised by scanDaniel Veillard2009-09-071-2/+2
| | | | | * encoding.c parser.c relaxng.c runsuite.c tree.c xmlreader.c xmlschemas.c: nothing really serious but better safe than sorry
* more progresses against the official regression tests small cleanup forDaniel Veillard2008-07-311-1/+1
| | | | | | | | | | | | | | | | | * runxmlconf.c: more progresses against the official regression tests * runsuite.c: small cleanup for non-leak reports * include/libxml/tree.h: parsing flags and other properties are now added to the document node, this is generally useful and allow to make Name and NmToken validations based on the parser flags, more specifically the 5th edition of XML or not * HTMLparser.c tree.c: small side effects for the previous changes * parser.c SAX2.c valid.c: the bulk of teh changes are here, the parser and validation behaviour can be affected, parsing flags need to be copied, lot of changes. Also fixing various validation problems in the regression tests. Daniel svn path=/trunk/; revision=3762
* Changed the name of the recently added public functionKasimier T. Buchcik2006-05-311-3/+3
| | | | | | | | | * xpath.c include/libxml/xpath.h runsuite.c: Changed the name of the recently added public function xmlXPathContextSetObjectCache() to xmlXPathContextSetCache(); so a more generic one, in case we decide to cache more things than only XPath objects.
* Added an XPath object cache. It sits on an xmlXPathContext and need to beKasimier T. Buchcik2006-05-291-1/+10
| | | | | | | | | | | | | | | | | | * xpath.c include/libxml/xpath.h: Added an XPath object cache. It sits on an xmlXPathContext and need to be explicitely activated (or deactivated again) with xmlXPathContextSetObjectCache(). The cache consists of 5 lists for node-set, string, number, boolean and misc XPath objects. Internally the xpath.c module will use object- deposition and -acquisition functions which will try to reuse as many XPath objects as possible, and fallback to normal free/create behaviour if no cache is available or if the cache is full. * runsuite.c: Adjusted to deactivate the cache for XML Schema tests if a cache-creation is turned on by default for the whole library, e.g. for testing purposes of the cache. It is deactivated here in order to avoid confusion of the memory leak detection in runsuite.c.
* fixed a number of warnings shown by HP-UX compiler and reported by RickDaniel Veillard2005-12-101-12/+7
| | | | | | | * HTMLparser.c configure.in parserInternals.c runsuite.c runtest.c testapi.c xmlschemas.c xmlschemastypes.c xmlstring.c: fixed a number of warnings shown by HP-UX compiler and reported by Rick Jones Daniel
* Changed to instantly mark instance-tests as failed if the correspondingKasimier T. Buchcik2005-12-091-7/+20
| | | | | | | | * runsuite.c: Changed to instantly mark instance-tests as failed if the corresponding schema was invalid. This reflects the side of the Python code for the XML Schema test suite. We now get the same number of failed tests on both sides.
* tiny fix from Albert Chin portability cleanup for arch needing trio forDaniel Veillard2005-10-281-1/+6
| | | | | | | * libxml.3: tiny fix from Albert Chin * runsuite.c runtest.c testapi.c: portability cleanup for arch needing trio for *printf Daniel
* a lot of small cleanups based on Linus' sparse check output. DanielDaniel Veillard2005-07-281-6/+6
| | | | | | | | | * HTMLparser.c SAX2.c encoding.c globals.c parser.c relaxng.c runsuite.c runtest.c schematron.c testHTML.c testReader.c testRegexp.c testSAX.c testThreads.c valid.c xinclude.c xmlIO.c xmllint.c xmlmodule.c xmlschemas.c xpath.c xpointer.c: a lot of small cleanups based on Linus' sparse check output. Daniel
* Tiny portability adjustment for win. Added runtest.exe and runsuite.exe toKasimier T. Buchcik2005-07-051-1/+6
| | | | | | * runsuite.c runtest.c: Tiny portability adjustment for win. * win32/Makefile.*: Added runtest.exe and runsuite.exe to be created.
* Trying to fix CR/LF troubles, DanielDaniel Veillard2005-07-041-1/+6
|
* first stb at unimplemnted detection fixing Windows code DanielDaniel Veillard2005-07-041-0/+17
| | | | | | * runsuite.c: first stb at unimplemnted detection * runtest.c: fixing Windows code Daniel
* fix on schemas error portability glob() on Windows DanielDaniel Veillard2005-07-041-1/+1
| | | | | | * runsuite.c: fix on schemas error * runtest.c: portability glob() on Windows Daniel
* cleanups, logfile and portability fixed a memory leak DanielDaniel Veillard2005-07-041-93/+120
| | | | | | * runsuite.c runtest.c: cleanups, logfile and portability * xmllint.c: fixed a memory leak Daniel
* fixing compilations when disabling parts of the library at configure time.Daniel Veillard2005-07-031-2/+2
| | | | | | * runsuite.c runtest.c tree.c: fixing compilations when disabling parts of the library at configure time. Daniel
* fixing #307823 and a couple of assorted bugs fixed conditionals inDaniel Veillard2005-07-031-0/+7
| | | | | | | | | | * testapi.c runsuite.c runtest.c: fixing #307823 and a couple of assorted bugs * python/generator.py python/libxml2-python-api.xml: fixed conditionals in generator too * doc/apibuild.py doc/libxml2-api.xml doc/* elfgcchack.h: some cleanups too and rebuilt Daniel
* expanded test found and fixed the leak exposed by Microsoft regtestsDaniel Veillard2005-07-031-36/+131
| | | | | | * runsuite.c: expanded test * xmlregexp.c: found and fixed the leak exposed by Microsoft regtests Daniel
* a bit of progresses on xstc DanielDaniel Veillard2005-07-021-17/+231
| | | | | * runsuite.c: a bit of progresses on xstc Daniel
* completed the simple checks for Relax-NG suites back to the same 11 errorsDaniel Veillard2005-07-021-2/+184
| | | | | | * runsuite.c: completed the simple checks for Relax-NG suites back to the same 11 errors as in the Python runs. Daniel
* complete, checking on other platforms is needed updated fix a bug raisedDaniel Veillard2005-06-301-0/+610
* runtest.c: complete, checking on other platforms is needed * README: updated * debugXML.c: fix a bug raised by bill on IRC * relaxng.c: fix a leak in weird circumstances * runsuite.c Makefile.am: standalone test tool agaisnt the regression suites, work in progress Daniel