So, und jetzt wollen wir auch noch die richtige Klasse von Fehler sehen.

"Von 0 auf 1005 in einem check-in."

-0/1786 tests failed; 376 tests were skipped
+1005/1786 tests failed; 376 tests were skipped
This commit is contained in:
dlichteblau
2005-11-27 00:51:32 +00:00
parent 5dc3929ada
commit 755ee198af
3 changed files with 5458 additions and 1012 deletions

6456
XMLCONF

File diff suppressed because it is too large Load Diff

View File

@ -69,6 +69,7 @@
(with-open-file (*standard-output* (with-open-file (*standard-output*
(merge-pathnames "XMLCONF" base) (merge-pathnames "XMLCONF" base)
:direction :output :direction :output
:external-format :iso-8859-1
:if-exists :supersede) :if-exists :supersede)
(run-all-tests directory)))) (run-all-tests directory))))
@ -173,11 +174,9 @@
(progn (progn
(format t " [not-wf?]") (format t " [not-wf?]")
(cxml:parse-file pathname (dom:make-dom-builder) :validate t) (cxml:parse-file pathname (dom:make-dom-builder) :validate t)
nil) (error "well-formedness violation not detected")
(:no-error (n1l) nil)
(error "well-formedness violation not detected") (cxml:well-formedness-violation ()
n1l)
(serious-condition ()
(format t " not-wf") (format t " not-wf")
t))) t)))

View File

@ -50,9 +50,12 @@
#:cdata #:cdata
#:text #:text
#:xml-parse-error
#:well-formedness-violation
#:validity-error
#:parse-dtd-file #:parse-dtd-file
#:parse-dtd-stream #:parse-dtd-stream
#:validity-error
#:make-validator #:make-validator
#:*cache-all-dtds* #:*cache-all-dtds*