Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 2d96adb2 | 2024-06-22 21:28:40 | windows: fopen files with "wb" | ||
| 208f27f9 | 2024-06-15 19:13:08 | include: Don't define ATTRIBUTE_UNUSED in public header Stop polluting namespace with unprefixed names. | ||
| b34dc1e4 | 2024-06-10 23:20:22 | tree: Deprecate xmlBuffer members | ||
| 52384043 | 2024-06-11 19:10:41 | parser: Pass resource type to resource loader | ||
| 40b76eda | 2024-06-11 12:54:12 | relaxng: Add callbacks for resource loader | ||
| 89743f8b | 2024-06-11 11:34:48 | test: Disable catalogs with xmlCatalogSetDefaults Disable catalogs instead of tracking catalog allocations, simplifying memory leak detection. Also stop using xmlNoNetExternalEntityLoader. | ||
| ae960cac | 2023-11-07 21:08:01 | Allow unlimited length decimals, integers etc. | ||
| f92ea2cc | 2023-11-18 14:36:41 | tests: Fix build with older MSVC Regressed in 9b5cce7a. Fixes #620. | ||
| 9b5cce7a | 2023-09-21 00:44:50 | include: Remove more unnecessary includes | ||
| 209516ac | 2023-09-20 15:49:03 | tests: Don't use deprecated symbols | ||
| 886bf4e6 | 2023-04-30 15:35:47 | Stop calling xmlMemoryDump This was used to check for memory leaks but could potentially create a .memdump file. These days, there are better ways to check for memory leaks. | ||
| 28b3777e | 2022-12-22 15:35:28 | runsuite: Some errors are expected | ||
| b92768cd | 2022-12-08 00:24:53 | tests: Enable "runsuite" test This enables some tests with testcases in - test/xsdtest - test/relaxng/OASIS/spectest.xml - test/relaxng/testsuite.xml The XML Schema Test Suite will also be run it was downloaded, see xstc/Makefile.am. Gitlab CI should be updated to fetch these files. There are 10 expected errors in the XSD test suite. This seems to be the case since at least version 2.9.0 from 2012. | ||
| 34a5a4a5 | 2022-11-22 15:40:51 | tests: Remove unneeded #includes | ||
| 5bffa33a | 2022-09-02 05:03:03 | Stop including sys/types.h | ||
| d99ddd9b | 2022-03-05 21:46:40 | Improve buffer allocation scheme In most places, we really need the double-it scheme to avoid quadratic behavior. The hybrid scheme still can cause many reallocations and the bounded scheme doesn't seem to provide meaningful protection in xmlreader.c. | ||
| 2489c1d0 | 2022-02-28 22:42:10 | Remove useless __CYGWIN__ checks From what I can tell, some really early Cygwin versions from around 1998-2000 used to erroneously define _WIN32. This was eventually fixed, but these days, the `defined(_WIN32) && !defined(__CYGWIN__)` idiom is unnecessary. Now, we only check for __CYGWIN__ in xmlexports.h when deciding whether to use __declspec. | ||
| 2a350ee9 | 2019-09-30 17:04:54 | Large batch of typo fixes Closes #109. | ||
| dcae579e | 2019-01-01 16:48:40 | Remove unneeded function pointer casts | ||
| f8e3db04 | 2012-09-11 13:26:36 | Big space and tab cleanup Remove all space before tabs and space and tabs at end of lines. | ||
| c3b1d09b | 2012-08-13 16:50:48 | clean redefinition of {v}snprintf in C-source as those from *config.h are preferable (e.g. win32config.h) | ||
| 1f0453f7 | 2012-08-13 16:56:11 | minimize use of HAVE_CONFIG_H as build process for supported platforms provide "config.h" header file | ||
| 22030ef8 | 2012-05-23 15:52:45 | Restore code for Windows compilation Try to keep as close to rc1 but still allow the change from Roumen for mingw | ||
| 978ff224 | 2012-05-20 16:07:54 | use mingw C99 compatible functions {v}snprintf instead those from MSVC runtime | ||
| 76d36458 | 2009-09-07 11:19:33 | Fixing assorted potential problems raised by scan * encoding.c parser.c relaxng.c runsuite.c tree.c xmlreader.c xmlschemas.c: nothing really serious but better safe than sorry | ||
| ae0765b6 | 2008-07-31 19:54:59 | more progresses against the official regression tests small cleanup for * 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 | ||
| 5869469f | 2006-05-31 12:37:28 | Changed the name of the recently added public function * 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. | ||
| a7248443 | 2006-05-29 16:15:36 | Added an XPath object cache. It sits on an xmlXPathContext and need to be * 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. | ||
| 6a0baa0c | 2005-12-10 11:11:12 | fixed a number of warnings shown by HP-UX compiler and reported by Rick * 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 | ||
| dcac4fce | 2005-12-09 10:03:27 | Changed to instantly mark instance-tests as failed if the corresponding * 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. | ||
| f93a67e9 | 2005-10-28 16:37:05 | tiny fix from Albert Chin portability cleanup for arch needing trio for * libxml.3: tiny fix from Albert Chin * runsuite.c runtest.c testapi.c: portability cleanup for arch needing trio for *printf Daniel | ||
| 24505b0f | 2005-07-28 23:49:35 | a lot of small cleanups based on Linus' sparse check output. Daniel * 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 | ||
| 87db1cf6 | 2005-07-05 10:40:52 | Tiny portability adjustment for win. Added runtest.exe and runsuite.exe to * runsuite.c runtest.c: Tiny portability adjustment for win. * win32/Makefile.*: Added runtest.exe and runsuite.exe to be created. | ||
| cfbb0dd8 | 2005-07-04 17:12:01 | Trying to fix CR/LF troubles, Daniel | ||
| 90837789 | 2005-07-04 15:45:10 | first stb at unimplemnted detection fixing Windows code Daniel * runsuite.c: first stb at unimplemnted detection * runtest.c: fixing Windows code Daniel | ||
| 4ac5f9af | 2005-07-04 15:20:27 | fix on schemas error portability glob() on Windows Daniel * runsuite.c: fix on schemas error * runtest.c: portability glob() on Windows Daniel | ||
| c935253f | 2005-07-04 14:25:34 | cleanups, logfile and portability fixed a memory leak Daniel * runsuite.c runtest.c: cleanups, logfile and portability * xmllint.c: fixed a memory leak Daniel | ||
| 6b6d6809 | 2005-07-03 21:00:34 | fixing compilations when disabling parts of the library at configure time. * runsuite.c runtest.c tree.c: fixing compilations when disabling parts of the library at configure time. Daniel | ||
| 95175012 | 2005-07-03 16:09:51 | fixing #307823 and a couple of assorted bugs fixed conditionals in * 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 | ||
| de0e498b | 2005-07-03 14:35:44 | expanded test found and fixed the leak exposed by Microsoft regtests * runsuite.c: expanded test * xmlregexp.c: found and fixed the leak exposed by Microsoft regtests Daniel | ||
| 3fe1e8a1 | 2005-07-02 21:39:06 | a bit of progresses on xstc Daniel * runsuite.c: a bit of progresses on xstc Daniel | ||
| e84f231e | 2005-07-02 07:31:28 | completed the simple checks for Relax-NG suites back to the same 11 errors * runsuite.c: completed the simple checks for Relax-NG suites back to the same 11 errors as in the Python runs. Daniel | ||
| f2e066ac | 2005-06-30 13:04:44 | complete, checking on other platforms is needed updated fix a bug raised * 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 |