aboutsummaryrefslogtreecommitdiffstats
path: root/check-relaxng-test-suite.py
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-03-18 16:53:17 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-03-18 16:53:17 +0000
commita1a9d0410000cc69874e53e438b250037d3e14cd (patch)
treed08d3116ef5314153fc17c27bc2dd41f89d95bc4 /check-relaxng-test-suite.py
parent28c52ab518d34a36fd8da6870a5850088f129a6a (diff)
downloadandroid_external_libxml2-a1a9d0410000cc69874e53e438b250037d3e14cd.tar.gz
android_external_libxml2-a1a9d0410000cc69874e53e438b250037d3e14cd.tar.bz2
android_external_libxml2-a1a9d0410000cc69874e53e438b250037d3e14cd.zip
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
Diffstat (limited to 'check-relaxng-test-suite.py')
-rwxr-xr-xcheck-relaxng-test-suite.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/check-relaxng-test-suite.py b/check-relaxng-test-suite.py
index 6f65264a..2e378f45 100755
--- a/check-relaxng-test-suite.py
+++ b/check-relaxng-test-suite.py
@@ -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 + " "