1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

removed a warning more cleanup, added ENTITY and ENTITIES support

* tree.c: removed a warning
* xmlschemastypes.c: more cleanup, added ENTITY and ENTITIES
  support
* check-relaxng-test-suite.py check-xsddata-test-suite.py:
  cleanup/improvements of the regression tests batch
* test/relaxng/testsuite.xml: augmented libxml2 own testsuite
Daniel
This commit is contained in:
Daniel Veillard
2003-03-18 16:53:17 +00:00
parent 28c52ab518
commit a1a9d04100
6 changed files with 333 additions and 32 deletions

View File

@ -10,6 +10,7 @@ import libxml2
# Memory debug specific
libxml2.debugMemory(1)
debug = 0
verbose = 0
#
# the testsuite description
@ -336,7 +337,7 @@ def handle_testSuite(node, level = 0):
handle_testSuite(test, level + 1)
if level >= 1 and sections != []:
if verbose and level >= 1 and sections != []:
msg = ""
for section in sections:
msg = msg + section.content + " "