more work on the RelaxNG implementation conformance testing. found 373

* relaxng.c check-relaxng-test-suite.py: more work on the
  RelaxNG implementation conformance testing.
  found 373 test schemas: 284 success 89 failures
  found 529 test instances: 448 success 47 failures
* result/relaxng/*: updated the results
Daniel
diff --git a/check-relaxng-test-suite.py b/check-relaxng-test-suite.py
index 00fe902..aa6ad15 100755
--- a/check-relaxng-test-suite.py
+++ b/check-relaxng-test-suite.py
@@ -7,12 +7,13 @@
 sys.path.append("python")
 import libxml2
 
-
 #
 # the testsuite description
 #
 CONF="test/relaxng/OASIS/spectest.xml"
 LOG="check-relaxng-test-suite.log"
+RES="relaxng-test-results.xml"
+
 
 log = open(LOG, "w")
 nb_schemas_tests = 0
@@ -45,7 +46,17 @@
     log.write("resources: %s\n" % (resources))
     return None
 
-
+#
+# Load the previous results
+#
+#results = {}
+#previous = {}
+#
+#try:
+#    res = libxml2.parseFile(RES)
+#except:
+#    log.write("Could not parse %s" % (RES))
+    
 #
 # handle a valid instance
 #