cxml-cvs
Threads by month
- ----- 2025 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- 425 discussions

[cxml-cvs] CVS update: cxml/xml/unparse.lisp cxml/xml/xml-parse.lisp
by dlichteblau@common-lisp.net 26 Nov '05
by dlichteblau@common-lisp.net 26 Nov '05
26 Nov '05
Update of /project/cxml/cvsroot/cxml/xml
In directory common-lisp.net:/tmp/cvs-serv23697/xml
Modified Files:
unparse.lisp xml-parse.lisp
Log Message:
-sun/not-wf/pi.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- No space between PI target name and data]
-ibm/not-wf/P24/ibm24n02.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests VersionInfo with a required field missing. The white space is
- missing between the key word "xml" and the VersionInfo in the XMLDecl.
- ]
sowie massenhaft :eof-pruefungen
Date: Sun Nov 27 00:57:10 2005
Author: dlichteblau
Index: cxml/xml/unparse.lisp
diff -u cxml/xml/unparse.lisp:1.1.1.6 cxml/xml/unparse.lisp:1.2
--- cxml/xml/unparse.lisp:1.1.1.6 Sun Mar 13 19:02:56 2005
+++ cxml/xml/unparse.lisp Sun Nov 27 00:57:10 2005
@@ -291,8 +291,9 @@
(unless (rod-equal target '#.(string-rod "xml"))
(write-rod '#.(string-rod "<?") sink)
(write-rod target sink)
- (write-rune #/space sink)
- (write-rod data sink)
+ (when data
+ (write-rune #/space sink)
+ (write-rod data sink))
(write-rod '#.(string-rod "?>") sink)))
(defmethod sax:start-cdata ((sink sink))
Index: cxml/xml/xml-parse.lisp
diff -u cxml/xml/xml-parse.lisp:1.11 cxml/xml/xml-parse.lisp:1.12
--- cxml/xml/xml-parse.lisp:1.11 Sun Nov 27 00:25:29 2005
+++ cxml/xml/xml-parse.lisp Sun Nov 27 00:57:10 2005
@@ -1079,7 +1079,7 @@
(setf (elmdef-external-p e) *markup-declaration-external-p*)
e))))
-(defvar *redefinition-warning* t)
+(defvar *redefinition-warning* nil)
(defun define-attribute (dtd element name type default)
(let ((adef (make-attdef :element element
@@ -1313,6 +1313,11 @@
(t
(error "Bad character ~S after \"<!\"" d)))))
+(definline read-S? (input)
+ (while (member (peek-rune input) '(#/U+0020 #/U+0009 #/U+000A #/U+000D)
+ :test #'eql)
+ (consume-rune input)))
+
(defun read-attribute-list (zinput input imagine-space-p)
(cond ((or imagine-space-p
(let ((c (peek-rune input)))
@@ -1348,11 +1353,6 @@
(perror input "Expected \";\"."))
(values :NAMED name))))))
-(definline read-S? (input)
- (while (member (peek-rune input) '(#/U+0020 #/U+0009 #/U+000A #/U+000D)
- :test #'eq)
- (consume-rune input)))
-
(defun read-tag-2 (zinput input kind)
(let ((name (read-name-token input))
(atts nil))
@@ -1547,8 +1547,15 @@
(unless (name-start-rune-p c)
(error "Expecting name after '<?'"))
(setf name (read-name-token input)))
- (values name
- (read-pi-content input))))
+ (cond
+ ((member (peek-rune input) '(#/U+0020 #/U+0009 #/U+000A #/U+000D)
+ :test #'eql)
+ (values name (read-pi-content input)))
+ (t
+ (unless (and (eql (read-rune input) #/?)
+ (eql (read-rune input) #/>))
+ (wf-error "malformed processing instruction"))
+ (values name "")))))
(defun read-pi-content (input &aux d)
(read-S? input)
@@ -1557,6 +1564,8 @@
(tagbody
state-1
(setf d (read-rune input))
+ (unless d
+ (error 'end-of-xstream))
(unless (data-rune-p d)
(error "Illegal char: ~S." d))
(when (rune= d #/?) (go state-2))
@@ -1564,6 +1573,8 @@
(go state-1)
state-2 ;; #/? seen
(setf d (read-rune input))
+ (unless d
+ (error 'end-of-xstream))
(unless (data-rune-p d)
(error "Illegal char: ~S." d))
(when (rune= d #/>) (return))
1
0
Update of /project/cxml/cvsroot/cxml
In directory common-lisp.net:/tmp/cvs-serv21467
Modified Files:
XMLCONF
Log Message:
-sun/not-wf/dtd07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Text declarations (which optionally begin any external entity)
- are required to have "encoding=...". ]
Date: Sun Nov 27 00:25:29 2005
Author: dlichteblau
Index: cxml/XMLCONF
diff -u cxml/XMLCONF:1.3 cxml/XMLCONF:1.4
--- cxml/XMLCONF:1.3 Sun Nov 27 00:00:46 2005
+++ cxml/XMLCONF Sun Nov 27 00:25:28 2005
@@ -493,11 +493,7 @@
sun/not-wf/dtd03.xml [not-wf?] not-wf
sun/not-wf/dtd04.xml [not-wf?] not-wf
sun/not-wf/dtd05.xml [not-wf?] not-wf
-sun/not-wf/dtd07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Text declarations (which optionally begin any external entity)
- are required to have "encoding=...". ]
+sun/not-wf/dtd07.xml [not-wf?] not-wf
sun/not-wf/element00.xml [not-wf?] not-wf
sun/not-wf/element01.xml [not-wf?] not-wf
sun/not-wf/element02.xml [not-wf?] not-wf
@@ -2385,4 +2381,4 @@
ibm/valid/P87/ibm87v01.xml [not validating:] input [validating:] input
ibm/valid/P88/ibm88v01.xml [not validating:] input [validating:] input
ibm/valid/P89/ibm89v01.xml [not validating:] input [validating:] input
-121/1786 tests failed; 376 tests were skipped
\ No newline at end of file
+120/1786 tests failed; 376 tests were skipped
\ No newline at end of file
1
0

[cxml-cvs] CVS update: cxml/xml/xml-name-rune-p.lisp cxml/xml/xml-parse.lisp
by dlichteblau@common-lisp.net 26 Nov '05
by dlichteblau@common-lisp.net 26 Nov '05
26 Nov '05
Update of /project/cxml/cvsroot/cxml/xml
In directory common-lisp.net:/tmp/cvs-serv21467/xml
Modified Files:
xml-name-rune-p.lisp xml-parse.lisp
Log Message:
-sun/not-wf/dtd07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Text declarations (which optionally begin any external entity)
- are required to have "encoding=...". ]
Date: Sun Nov 27 00:25:29 2005
Author: dlichteblau
Index: cxml/xml/xml-name-rune-p.lisp
diff -u cxml/xml/xml-name-rune-p.lisp:1.4 cxml/xml/xml-name-rune-p.lisp:1.5
--- cxml/xml/xml-name-rune-p.lisp:1.4 Sat Nov 26 22:48:25 2005
+++ cxml/xml/xml-name-rune-p.lisp Sun Nov 27 00:25:29 2005
@@ -11,7 +11,7 @@
(compile
nil
'(lambda ()
- (let ((.max. #xD800))
+ (let ((+max+ #xD800))
(labels
((name-start-rune-p (rune)
(or (letter-rune-p rune)
@@ -207,7 +207,7 @@
(predicate-to-bv (p)
- (let ((r (make-array .max. :element-type 'bit :initial-element 0)))
+ (let ((r (make-array +max+ :element-type 'bit :initial-element 0)))
(dotimes (i #x10000 r)
(when (funcall p i)
(setf (aref r i) 1))))) )
@@ -215,13 +215,13 @@
`(progn
(DEFINLINE NAME-RUNE-P (RUNE)
(SETF RUNE (RUNE-CODE RUNE))
- (AND (<= 0 RUNE ,.max.)
+ (AND (<= 0 RUNE ,+max+)
(LOCALLY (DECLARE (OPTIMIZE (SAFETY 0) (SPEED 3)))
(= 1 (SBIT ',(predicate-to-bv #'name-rune-p)
(THE FIXNUM RUNE))))))
(DEFINLINE NAME-START-RUNE-P (RUNE)
(SETF RUNE (RUNE-CODE RUNE))
- (AND (<= 0 RUNE ,.MAX.)
+ (AND (<= 0 RUNE ,+MAX+)
(LOCALLY (DECLARE (OPTIMIZE (SAFETY 0) (SPEED 3)))
(= 1 (SBIT ',(predicate-to-bv #'name-start-rune-p)
(THE FIXNUM RUNE)))))))) ))))
Index: cxml/xml/xml-parse.lisp
diff -u cxml/xml/xml-parse.lisp:1.10 cxml/xml/xml-parse.lisp:1.11
--- cxml/xml/xml-parse.lisp:1.10 Sun Nov 27 00:00:47 2005
+++ cxml/xml/xml-parse.lisp Sun Nov 27 00:25:29 2005
@@ -670,10 +670,10 @@
;;;; DTD
;;;;
-(define-condition parse-error (simple-error) ())
-(define-condition well-formedness-violation (parse-error) ())
+(define-condition xml-parse-error (simple-error) ())
+(define-condition well-formedness-violation (xml-parse-error) ())
(define-condition end-of-xstream (well-formedness-violation) ())
-(define-condition validity-error (parse-error) ())
+(define-condition validity-error (xml-parse-error) ())
(defun validity-error (x &rest args)
(error 'validity-error
@@ -2420,7 +2420,7 @@
(defun p/ext-subset (input)
(cond ((eq (peek-token input) :xml-pi)
- (let ((hd (parse-xml-pi (cdr (nth-value 1 (peek-token input))) nil)))
+ (let ((hd (parse-text-decl (cdr (nth-value 1 (peek-token input))))))
(setup-encoding input hd))
(consume-token input)))
(set-full-speed input)
@@ -2569,7 +2569,7 @@
(let ((*data-behaviour* :DTD))
;; optional XMLDecl?
(cond ((eq (peek-token input) :xml-pi)
- (let ((hd (parse-xml-pi (cdr (nth-value 1 (peek-token input))) t)))
+ (let ((hd (parse-xml-decl (cdr (nth-value 1 (peek-token input))))))
(setf (standalone-p *ctx*) (eq (xml-header-standalone-p hd) :yes))
(setup-encoding input hd))
(read-token input)))
@@ -2743,41 +2743,37 @@
(defun p/ext-parsed-ent (input)
;; [78] extParsedEnt ::= '<?xml' VersionInfo? EncodingDecl S? '?>' content
(when (eq (peek-token input) :xml-pi)
- (let ((hd (parse-xml-pi (cdr (nth-value 1 (peek-token input))) nil)))
+ (let ((hd (parse-text-decl (cdr (nth-value 1 (peek-token input))))))
(setup-encoding input hd))
- (consume-token input) )
+ (consume-token input))
(set-full-speed input)
(p/content input))
-(defun parse-xml-pi (content sd-ok-p)
- ;; --> xml-header
- ;;(make-xml-header))
+(defun parse-xml-decl (content)
(let* ((res (make-xml-header))
(i (make-rod-xstream content))
(atts (read-attribute-list 'foo i t))) ;xxx on 'foo
(unless (eq (peek-rune i) :eof)
- (error "Garbage at end of XML PI."))
+ (error "Garbage at end of XMLDecl."))
;; versioninfo muss da sein
;; dann ? encodingdecl
;; dann ? sddecl
;; dann ende
- (when (and (not (eq (caar atts) (intern-name '#.(string-rod "version"))))
- sd-ok-p)
- (error "XML PI needs version."))
- (when (eq (caar atts) (intern-name '#.(string-rod "version")))
- (unless (and (>= (length (cdar atts)) 1)
- (every (lambda (x)
- (or (rune<= #/a x #/z)
- (rune<= #/A x #/Z)
- (rune<= #/0 x #/9)
- (rune= x #/_)
- (rune= x #/.)
- (rune= x #/:)
- (rune= x #/-)))
- (cdar atts)))
- (error "Bad XML version number: ~S." (rod-string (cdar atts))))
- (setf (xml-header-version res) (rod-string (cdar atts)))
- (pop atts))
+ (unless (eq (caar atts) (intern-name '#.(string-rod "version")))
+ (wf-error "XMLDecl needs version."))
+ (unless (and (>= (length (cdar atts)) 1)
+ (every (lambda (x)
+ (or (rune<= #/a x #/z)
+ (rune<= #/A x #/Z)
+ (rune<= #/0 x #/9)
+ (rune= x #/_)
+ (rune= x #/.)
+ (rune= x #/:)
+ (rune= x #/-)))
+ (cdar atts)))
+ (wf-error "Bad XML version number: ~S." (rod-string (cdar atts))))
+ (setf (xml-header-version res) (rod-string (cdar atts)))
+ (pop atts)
(when (eq (caar atts) (intern-name '#.(string-rod "encoding")))
(unless (and (>= (length (cdar atts)) 1)
(every (lambda (x)
@@ -2793,25 +2789,67 @@
(rune<= #/A x #/Z)
(rune<= #/0 x #/9)))
(aref (cdar atts) 0)))
- (error "Bad XML encoding name: ~S." (rod-string (cdar atts))))
+ (wf-error "Bad XML encoding name: ~S." (rod-string (cdar atts))))
(setf (xml-header-encoding res) (rod-string (cdar atts)))
(pop atts))
- (when (and sd-ok-p (eq (caar atts) (intern-name '#.(string-rod "standalone"))))
+ (when (eq (caar atts) (intern-name '#.(string-rod "standalone")))
(unless (or (rod= (cdar atts) '#.(string-rod "yes"))
(rod= (cdar atts) '#.(string-rod "no")))
- (error "Hypersensitivity pitfall: ~
- XML PI's 'standalone' attribute must be exactly \"yes\" or \"no\" and not ~S."
+ (wf-error "XMLDecl's 'standalone' attribute must be exactly \"yes\" or \"no\" and not ~S."
(rod-string (cdar atts))))
(setf (xml-header-standalone-p res)
- (if (rod-equal '#.(string-rod "yes") (cdar atts))
- :yes
- :no))
+ (if (rod-equal '#.(string-rod "yes") (cdar atts))
+ :yes
+ :no))
(pop atts))
(when atts
- (error "XML designers decided to disallow future extensions to the set ~
- of allowed XML PI's attributes -- you might have lost big on ~S (~S)"
- (rod-string content) sd-ok-p
- ))
+ (wf-error "Garbage in XMLDecl: ~A" (rod-string content)))
+ res))
+
+(defun parse-text-decl (content)
+ (let* ((res (make-xml-header))
+ (i (make-rod-xstream content))
+ (atts (read-attribute-list 'foo i t))) ;xxx on 'foo
+ (unless (eq (peek-rune i) :eof)
+ (error "Garbage at end of TextDecl"))
+ ;; versioninfo optional
+ ;; encodingdecl muss da sein
+ ;; dann ende
+ (when (eq (caar atts) (intern-name '#.(string-rod "version")))
+ (unless (and (>= (length (cdar atts)) 1)
+ (every (lambda (x)
+ (or (rune<= #/a x #/z)
+ (rune<= #/A x #/Z)
+ (rune<= #/0 x #/9)
+ (rune= x #/_)
+ (rune= x #/.)
+ (rune= x #/:)
+ (rune= x #/-)))
+ (cdar atts)))
+ (wf-error "Bad XML version number: ~S." (rod-string (cdar atts))))
+ (setf (xml-header-version res) (rod-string (cdar atts)))
+ (pop atts))
+ (unless (eq (caar atts) (intern-name '#.(string-rod "encoding")))
+ (wf-error "TextDecl needs encoding."))
+ (unless (and (>= (length (cdar atts)) 1)
+ (every (lambda (x)
+ (or (rune<= #/a x #/z)
+ (rune<= #/A x #/Z)
+ (rune<= #/0 x #/9)
+ (rune= x #/_)
+ (rune= x #/.)
+ (rune= x #/-)))
+ (cdar atts))
+ ((lambda (x)
+ (or (rune<= #/a x #/z)
+ (rune<= #/A x #/Z)
+ (rune<= #/0 x #/9)))
+ (aref (cdar atts) 0)))
+ (wf-error "Bad XML encoding name: ~S." (rod-string (cdar atts))))
+ (setf (xml-header-encoding res) (rod-string (cdar atts)))
+ (pop atts)
+ (when atts
+ (wf-error "Garbage in TextDecl: ~A" (rod-string content)))
res))
;;;; ---------------------------------------------------------------------------
1
0
Update of /project/cxml/cvsroot/cxml/xml
In directory common-lisp.net:/tmp/cvs-serv18777/xml
Modified Files:
xml-parse.lisp
Log Message:
-xmltest/not-wf/sa/160.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
-xmltest/not-wf/sa/161.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
-xmltest/not-wf/sa/162.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
-ibm/not-wf/P29/ibm29n03.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
- ATTlistDecl in the DTD.
- ]
-ibm/not-wf/P29/ibm29n04.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
- EntityDecl in the DTD.
- ]
-ibm/not-wf/P29/ibm29n07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside a
- NotationDecl in the DTD.
- ]
-ibm/not-wf/P69/ibm69n06.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests PEReference which is against P69 WFC: No Recursion. The
- recursive PE reference occurs with the entity declarations for "paaa" and
- "bbb" in the DTD.
- ]
-ibm/not-wf/P69/ibm69n07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests PEReference which is against P69 WFC: No Recursion. The
- indirect recursive PE reference occurs with the entity declarations for
- "paaa", "bbb", "ccc", "ddd", and "eee" in the DTD.
- ]
Date: Sun Nov 27 00:00:55 2005
Author: dlichteblau
Index: cxml/xml/xml-parse.lisp
diff -u cxml/xml/xml-parse.lisp:1.9 cxml/xml/xml-parse.lisp:1.10
--- cxml/xml/xml-parse.lisp:1.9 Sat Nov 26 23:21:51 2005
+++ cxml/xml/xml-parse.lisp Sun Nov 27 00:00:47 2005
@@ -2390,17 +2390,19 @@
;; markupdecl ::= elementdecl | AttlistDecl /* VC: Proper Declaration/PE Nesting */
;; | EntityDecl | NotationDecl
;; | PI | Comment /* WFC: PEs in Internal Subset */
- (case (peek-token input)
- (:|<!ELEMENT| (p/element-decl input))
- (:|<!ATTLIST| (p/attlist-decl input))
- (:|<!ENTITY| (p/entity-decl input))
- (:|<!NOTATION| (p/notation-decl input))
- (:PI
- (let ((sem (nth-value 1 (read-token input))))
- (sax:processing-instruction (handler *ctx*) (car sem) (cdr sem))))
- (:COMMENT (consume-token input))
- (otherwise
- (error "p/markup-decl ~S" (peek-token input)))))
+ (let ((token (peek-token input))
+ (*expand-pe-p* (and *expand-pe-p* *markup-declaration-external-p*)))
+ (case token
+ (:|<!ELEMENT| (p/element-decl input))
+ (:|<!ATTLIST| (p/attlist-decl input))
+ (:|<!ENTITY| (p/entity-decl input))
+ (:|<!NOTATION| (p/notation-decl input))
+ (:PI
+ (let ((sem (nth-value 1 (read-token input))))
+ (sax:processing-instruction (handler *ctx*) (car sem) (cdr sem))))
+ (:COMMENT (consume-token input))
+ (otherwise
+ (error "p/markup-decl ~S" (peek-token input))))))
(defun setup-encoding (input xml-header)
(when (xml-header-encoding xml-header)
1
0
Update of /project/cxml/cvsroot/cxml
In directory common-lisp.net:/tmp/cvs-serv18777
Modified Files:
XMLCONF
Log Message:
-xmltest/not-wf/sa/160.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
-xmltest/not-wf/sa/161.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
-xmltest/not-wf/sa/162.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
-ibm/not-wf/P29/ibm29n03.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
- ATTlistDecl in the DTD.
- ]
-ibm/not-wf/P29/ibm29n04.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
- EntityDecl in the DTD.
- ]
-ibm/not-wf/P29/ibm29n07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside a
- NotationDecl in the DTD.
- ]
-ibm/not-wf/P69/ibm69n06.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests PEReference which is against P69 WFC: No Recursion. The
- recursive PE reference occurs with the entity declarations for "paaa" and
- "bbb" in the DTD.
- ]
-ibm/not-wf/P69/ibm69n07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests PEReference which is against P69 WFC: No Recursion. The
- indirect recursive PE reference occurs with the entity declarations for
- "paaa", "bbb", "ccc", "ddd", and "eee" in the DTD.
- ]
Date: Sun Nov 27 00:00:46 2005
Author: dlichteblau
Index: cxml/XMLCONF
diff -u cxml/XMLCONF:1.2 cxml/XMLCONF:1.3
--- cxml/XMLCONF:1.2 Sat Nov 26 23:58:51 2005
+++ cxml/XMLCONF Sun Nov 27 00:00:46 2005
@@ -157,21 +157,9 @@
xmltest/not-wf/sa/157.xml [not-wf?] not-wf
xmltest/not-wf/sa/158.xml [not-wf?] not-wf
xmltest/not-wf/sa/159.xml [not-wf?] not-wf
-xmltest/not-wf/sa/160.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
-xmltest/not-wf/sa/161.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
-xmltest/not-wf/sa/162.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Violates the WFC
- by using a PE reference within a declaration. ]
+xmltest/not-wf/sa/160.xml [not-wf?] not-wf
+xmltest/not-wf/sa/161.xml [not-wf?] not-wf
+xmltest/not-wf/sa/162.xml [not-wf?] not-wf
xmltest/not-wf/sa/163.xml [not-wf?] not-wf
xmltest/not-wf/sa/164.xml [not-wf?] not-wf
xmltest/not-wf/sa/165.xml [not-wf?] not-wf
@@ -1108,26 +1096,11 @@
ibm/not-wf/p28a/ibm28an01.xml [not-wf?] not-wf
ibm/not-wf/P29/ibm29n01.xml [not-wf?] not-wf
ibm/not-wf/P29/ibm29n02.xml [not-wf?] not-wf
-ibm/not-wf/P29/ibm29n03.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
- ATTlistDecl in the DTD.
- ]
-ibm/not-wf/P29/ibm29n04.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
- EntityDecl in the DTD.
- ]
+ibm/not-wf/P29/ibm29n03.xml [not-wf?] not-wf
+ibm/not-wf/P29/ibm29n04.xml [not-wf?] not-wf
ibm/not-wf/P29/ibm29n05.xml [not-wf?] not-wf
ibm/not-wf/P29/ibm29n06.xml [not-wf?] not-wf
-ibm/not-wf/P29/ibm29n07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests WFC "PEs in Internal Subset". A PE reference occurs inside a
- NotationDecl in the DTD.
- ]
+ibm/not-wf/P29/ibm29n07.xml [not-wf?] not-wf
ibm/not-wf/P30/ibm30n01.xml [not-wf?] not-wf
ibm/not-wf/P31/ibm31n01.xml [not-wf?] not-wf
ibm/not-wf/P32/ibm32n01.xml [not-wf?] not-wf
@@ -1348,20 +1321,8 @@
ibm/not-wf/P69/ibm69n02.xml [not-wf?] not-wf
ibm/not-wf/P69/ibm69n03.xml [not-wf?] not-wf
ibm/not-wf/P69/ibm69n04.xml [not-wf?] not-wf
-ibm/not-wf/P69/ibm69n06.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests PEReference which is against P69 WFC: No Recursion. The
- recursive PE reference occurs with the entity declarations for "paaa" and
- "bbb" in the DTD.
- ]
-ibm/not-wf/P69/ibm69n07.xml [not-wf?] FAILED:
- well-formedness violation not detected
-[
- Tests PEReference which is against P69 WFC: No Recursion. The
- indirect recursive PE reference occurs with the entity declarations for
- "paaa", "bbb", "ccc", "ddd", and "eee" in the DTD.
- ]
+ibm/not-wf/P69/ibm69n06.xml [not-wf?] not-wf
+ibm/not-wf/P69/ibm69n07.xml [not-wf?] not-wf
ibm/not-wf/P71/ibm70n01.xml [not-wf?] not-wf
ibm/not-wf/P71/ibm71n01.xml [not-wf?] not-wf
ibm/not-wf/P71/ibm71n02.xml [not-wf?] not-wf
@@ -2424,4 +2385,4 @@
ibm/valid/P87/ibm87v01.xml [not validating:] input [validating:] input
ibm/valid/P88/ibm88v01.xml [not validating:] input [validating:] input
ibm/valid/P89/ibm89v01.xml [not validating:] input [validating:] input
-129/1786 tests failed; 376 tests were skipped
\ No newline at end of file
+121/1786 tests failed; 376 tests were skipped
\ No newline at end of file
1
0
Update of /project/cxml/cvsroot/cxml/test
In directory common-lisp.net:/tmp/cvs-serv18732/test
Modified Files:
xmlconf.lisp
Log Message:
output verkuerzt
Date: Sat Nov 26 23:58:55 2005
Author: dlichteblau
Index: cxml/test/xmlconf.lisp
diff -u cxml/test/xmlconf.lisp:1.3 cxml/test/xmlconf.lisp:1.4
--- cxml/test/xmlconf.lisp:1.3 Sat Nov 26 23:55:23 2005
+++ cxml/test/xmlconf.lisp Sat Nov 26 23:58:55 2005
@@ -98,7 +98,7 @@
(incf ntried)
(multiple-value-bind (pathname output)
(test-pathnames directory test)
- (princ pathname)
+ (princ (enough-namestring pathname directory))
(unless (probe-file pathname)
(error "file not found: ~A" pathname))
(with-simple-restart (skip-test "Skip this test")
1
0
Update of /project/cxml/cvsroot/cxml
In directory common-lisp.net:/tmp/cvs-serv18732
Modified Files:
XMLCONF
Log Message:
output verkuerzt
Date: Sat Nov 26 23:58:51 2005
Author: dlichteblau
Index: cxml/XMLCONF
diff -u cxml/XMLCONF:1.1 cxml/XMLCONF:1.2
--- cxml/XMLCONF:1.1 Sat Nov 26 23:55:22 2005
+++ cxml/XMLCONF Sat Nov 26 23:58:51 2005
@@ -1,2427 +1,2427 @@
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/001.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/002.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/003.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/004.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/005.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/006.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/007.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/008.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/009.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/010.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/011.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/012.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/013.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/014.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/015.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/016.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/017.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/018.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/019.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/020.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/021.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/022.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/023.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/024.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/025.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/026.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/027.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/028.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/029.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/030.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/031.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/032.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/033.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/034.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/035.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/036.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/037.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/038.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/039.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/040.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/041.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/042.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/043.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/044.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/045.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/046.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/047.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/048.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/049.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/050.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/051.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/052.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/053.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/054.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/055.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/056.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/057.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/058.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/059.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/060.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/061.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/062.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/063.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/064.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/065.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/066.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/067.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/068.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/069.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/070.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/071.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/072.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/073.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/074.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/075.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/076.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/077.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/078.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/079.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/080.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/081.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/082.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/083.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/084.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/085.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/086.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/087.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/088.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/089.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/090.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/091.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/092.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/093.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/094.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/095.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/096.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/097.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/098.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/099.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/100.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/101.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/102.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/103.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/104.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/105.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/106.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/107.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/108.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/109.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/110.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/111.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/112.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/113.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/114.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/115.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/116.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/117.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/118.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/119.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/120.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/121.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/122.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/123.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/124.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/125.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/126.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/127.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/128.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/129.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/130.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/131.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/132.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/133.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/134.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/135.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/136.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/137.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/138.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/139.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/140.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/141.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/142.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/143.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/144.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/145.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/146.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/147.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/148.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/149.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/150.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/151.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/152.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/153.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/154.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/155.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/156.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/157.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/158.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/159.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/160.xml [not-wf?] FAILED:
+xmltest/not-wf/sa/001.xml [not-wf?] not-wf
+xmltest/not-wf/sa/002.xml [not-wf?] not-wf
+xmltest/not-wf/sa/003.xml [not-wf?] not-wf
+xmltest/not-wf/sa/004.xml [not-wf?] not-wf
+xmltest/not-wf/sa/005.xml [not-wf?] not-wf
+xmltest/not-wf/sa/006.xml [not-wf?] not-wf
+xmltest/not-wf/sa/007.xml [not-wf?] not-wf
+xmltest/not-wf/sa/008.xml [not-wf?] not-wf
+xmltest/not-wf/sa/009.xml [not-wf?] not-wf
+xmltest/not-wf/sa/010.xml [not-wf?] not-wf
+xmltest/not-wf/sa/011.xml [not-wf?] not-wf
+xmltest/not-wf/sa/012.xml [not-wf?] not-wf
+xmltest/not-wf/sa/013.xml [not-wf?] not-wf
+xmltest/not-wf/sa/014.xml [not-wf?] not-wf
+xmltest/not-wf/sa/015.xml [not-wf?] not-wf
+xmltest/not-wf/sa/016.xml [not-wf?] not-wf
+xmltest/not-wf/sa/017.xml [not-wf?] not-wf
+xmltest/not-wf/sa/018.xml [not-wf?] not-wf
+xmltest/not-wf/sa/019.xml [not-wf?] not-wf
+xmltest/not-wf/sa/020.xml [not-wf?] not-wf
+xmltest/not-wf/sa/021.xml [not-wf?] not-wf
+xmltest/not-wf/sa/022.xml [not-wf?] not-wf
+xmltest/not-wf/sa/023.xml [not-wf?] not-wf
+xmltest/not-wf/sa/024.xml [not-wf?] not-wf
+xmltest/not-wf/sa/025.xml [not-wf?] not-wf
+xmltest/not-wf/sa/026.xml [not-wf?] not-wf
+xmltest/not-wf/sa/027.xml [not-wf?] not-wf
+xmltest/not-wf/sa/028.xml [not-wf?] not-wf
+xmltest/not-wf/sa/029.xml [not-wf?] not-wf
+xmltest/not-wf/sa/030.xml [not-wf?] not-wf
+xmltest/not-wf/sa/031.xml [not-wf?] not-wf
+xmltest/not-wf/sa/032.xml [not-wf?] not-wf
+xmltest/not-wf/sa/033.xml [not-wf?] not-wf
+xmltest/not-wf/sa/034.xml [not-wf?] not-wf
+xmltest/not-wf/sa/035.xml [not-wf?] not-wf
+xmltest/not-wf/sa/036.xml [not-wf?] not-wf
+xmltest/not-wf/sa/037.xml [not-wf?] not-wf
+xmltest/not-wf/sa/038.xml [not-wf?] not-wf
+xmltest/not-wf/sa/039.xml [not-wf?] not-wf
+xmltest/not-wf/sa/040.xml [not-wf?] not-wf
+xmltest/not-wf/sa/041.xml [not-wf?] not-wf
+xmltest/not-wf/sa/042.xml [not-wf?] not-wf
+xmltest/not-wf/sa/043.xml [not-wf?] not-wf
+xmltest/not-wf/sa/044.xml [not-wf?] not-wf
+xmltest/not-wf/sa/045.xml [not-wf?] not-wf
+xmltest/not-wf/sa/046.xml [not-wf?] not-wf
+xmltest/not-wf/sa/047.xml [not-wf?] not-wf
+xmltest/not-wf/sa/048.xml [not-wf?] not-wf
+xmltest/not-wf/sa/049.xml [not-wf?] not-wf
+xmltest/not-wf/sa/050.xml [not-wf?] not-wf
+xmltest/not-wf/sa/051.xml [not-wf?] not-wf
+xmltest/not-wf/sa/052.xml [not-wf?] not-wf
+xmltest/not-wf/sa/053.xml [not-wf?] not-wf
+xmltest/not-wf/sa/054.xml [not-wf?] not-wf
+xmltest/not-wf/sa/055.xml [not-wf?] not-wf
+xmltest/not-wf/sa/056.xml [not-wf?] not-wf
+xmltest/not-wf/sa/057.xml [not-wf?] not-wf
+xmltest/not-wf/sa/058.xml [not-wf?] not-wf
+xmltest/not-wf/sa/059.xml [not-wf?] not-wf
+xmltest/not-wf/sa/060.xml [not-wf?] not-wf
+xmltest/not-wf/sa/061.xml [not-wf?] not-wf
+xmltest/not-wf/sa/062.xml [not-wf?] not-wf
+xmltest/not-wf/sa/063.xml [not-wf?] not-wf
+xmltest/not-wf/sa/064.xml [not-wf?] not-wf
+xmltest/not-wf/sa/065.xml [not-wf?] not-wf
+xmltest/not-wf/sa/066.xml [not-wf?] not-wf
+xmltest/not-wf/sa/067.xml [not-wf?] not-wf
+xmltest/not-wf/sa/068.xml [not-wf?] not-wf
+xmltest/not-wf/sa/069.xml [not-wf?] not-wf
+xmltest/not-wf/sa/070.xml [not-wf?] not-wf
+xmltest/not-wf/sa/071.xml [not-wf?] not-wf
+xmltest/not-wf/sa/072.xml [not-wf?] not-wf
+xmltest/not-wf/sa/073.xml [not-wf?] not-wf
+xmltest/not-wf/sa/074.xml [not-wf?] not-wf
+xmltest/not-wf/sa/075.xml [not-wf?] not-wf
+xmltest/not-wf/sa/076.xml [not-wf?] not-wf
+xmltest/not-wf/sa/077.xml [not-wf?] not-wf
+xmltest/not-wf/sa/078.xml [not-wf?] not-wf
+xmltest/not-wf/sa/079.xml [not-wf?] not-wf
+xmltest/not-wf/sa/080.xml [not-wf?] not-wf
+xmltest/not-wf/sa/081.xml [not-wf?] not-wf
+xmltest/not-wf/sa/082.xml [not-wf?] not-wf
+xmltest/not-wf/sa/083.xml [not-wf?] not-wf
+xmltest/not-wf/sa/084.xml [not-wf?] not-wf
+xmltest/not-wf/sa/085.xml [not-wf?] not-wf
+xmltest/not-wf/sa/086.xml [not-wf?] not-wf
+xmltest/not-wf/sa/087.xml [not-wf?] not-wf
+xmltest/not-wf/sa/088.xml [not-wf?] not-wf
+xmltest/not-wf/sa/089.xml [not-wf?] not-wf
+xmltest/not-wf/sa/090.xml [not-wf?] not-wf
+xmltest/not-wf/sa/091.xml [not-wf?] not-wf
+xmltest/not-wf/sa/092.xml [not-wf?] not-wf
+xmltest/not-wf/sa/093.xml [not-wf?] not-wf
+xmltest/not-wf/sa/094.xml [not-wf?] not-wf
+xmltest/not-wf/sa/095.xml [not-wf?] not-wf
+xmltest/not-wf/sa/096.xml [not-wf?] not-wf
+xmltest/not-wf/sa/097.xml [not-wf?] not-wf
+xmltest/not-wf/sa/098.xml [not-wf?] not-wf
+xmltest/not-wf/sa/099.xml [not-wf?] not-wf
+xmltest/not-wf/sa/100.xml [not-wf?] not-wf
+xmltest/not-wf/sa/101.xml [not-wf?] not-wf
+xmltest/not-wf/sa/102.xml [not-wf?] not-wf
+xmltest/not-wf/sa/103.xml [not-wf?] not-wf
+xmltest/not-wf/sa/104.xml [not-wf?] not-wf
+xmltest/not-wf/sa/105.xml [not-wf?] not-wf
+xmltest/not-wf/sa/106.xml [not-wf?] not-wf
+xmltest/not-wf/sa/107.xml [not-wf?] not-wf
+xmltest/not-wf/sa/108.xml [not-wf?] not-wf
+xmltest/not-wf/sa/109.xml [not-wf?] not-wf
+xmltest/not-wf/sa/110.xml [not-wf?] not-wf
+xmltest/not-wf/sa/111.xml [not-wf?] not-wf
+xmltest/not-wf/sa/112.xml [not-wf?] not-wf
+xmltest/not-wf/sa/113.xml [not-wf?] not-wf
+xmltest/not-wf/sa/114.xml [not-wf?] not-wf
+xmltest/not-wf/sa/115.xml [not-wf?] not-wf
+xmltest/not-wf/sa/116.xml [not-wf?] not-wf
+xmltest/not-wf/sa/117.xml [not-wf?] not-wf
+xmltest/not-wf/sa/118.xml [not-wf?] not-wf
+xmltest/not-wf/sa/119.xml [not-wf?] not-wf
+xmltest/not-wf/sa/120.xml [not-wf?] not-wf
+xmltest/not-wf/sa/121.xml [not-wf?] not-wf
+xmltest/not-wf/sa/122.xml [not-wf?] not-wf
+xmltest/not-wf/sa/123.xml [not-wf?] not-wf
+xmltest/not-wf/sa/124.xml [not-wf?] not-wf
+xmltest/not-wf/sa/125.xml [not-wf?] not-wf
+xmltest/not-wf/sa/126.xml [not-wf?] not-wf
+xmltest/not-wf/sa/127.xml [not-wf?] not-wf
+xmltest/not-wf/sa/128.xml [not-wf?] not-wf
+xmltest/not-wf/sa/129.xml [not-wf?] not-wf
+xmltest/not-wf/sa/130.xml [not-wf?] not-wf
+xmltest/not-wf/sa/131.xml [not-wf?] not-wf
+xmltest/not-wf/sa/132.xml [not-wf?] not-wf
+xmltest/not-wf/sa/133.xml [not-wf?] not-wf
+xmltest/not-wf/sa/134.xml [not-wf?] not-wf
+xmltest/not-wf/sa/135.xml [not-wf?] not-wf
+xmltest/not-wf/sa/136.xml [not-wf?] not-wf
+xmltest/not-wf/sa/137.xml [not-wf?] not-wf
+xmltest/not-wf/sa/138.xml [not-wf?] not-wf
+xmltest/not-wf/sa/139.xml [not-wf?] not-wf
+xmltest/not-wf/sa/140.xml [not-wf?] not-wf
+xmltest/not-wf/sa/141.xml [not-wf?] not-wf
+xmltest/not-wf/sa/142.xml [not-wf?] not-wf
+xmltest/not-wf/sa/143.xml [not-wf?] not-wf
+xmltest/not-wf/sa/144.xml [not-wf?] not-wf
+xmltest/not-wf/sa/145.xml [not-wf?] not-wf
+xmltest/not-wf/sa/146.xml [not-wf?] not-wf
+xmltest/not-wf/sa/147.xml [not-wf?] not-wf
+xmltest/not-wf/sa/148.xml [not-wf?] not-wf
+xmltest/not-wf/sa/149.xml [not-wf?] not-wf
+xmltest/not-wf/sa/150.xml [not-wf?] not-wf
+xmltest/not-wf/sa/151.xml [not-wf?] not-wf
+xmltest/not-wf/sa/152.xml [not-wf?] not-wf
+xmltest/not-wf/sa/153.xml [not-wf?] not-wf
+xmltest/not-wf/sa/154.xml [not-wf?] not-wf
+xmltest/not-wf/sa/155.xml [not-wf?] not-wf
+xmltest/not-wf/sa/156.xml [not-wf?] not-wf
+xmltest/not-wf/sa/157.xml [not-wf?] not-wf
+xmltest/not-wf/sa/158.xml [not-wf?] not-wf
+xmltest/not-wf/sa/159.xml [not-wf?] not-wf
+xmltest/not-wf/sa/160.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Violates the WFC
by using a PE reference within a declaration. ]
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/161.xml [not-wf?] FAILED:
+xmltest/not-wf/sa/161.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Violates the WFC
by using a PE reference within a declaration. ]
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/162.xml [not-wf?] FAILED:
+xmltest/not-wf/sa/162.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Violates the WFC
by using a PE reference within a declaration. ]
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/163.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/164.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/165.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/166.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/167.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/168.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/169.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/170.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/171.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/172.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/173.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/174.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/175.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/176.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/177.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/178.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/179.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/180.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/181.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/182.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/183.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/184.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/185.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/sa/186.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/not-sa/001.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/not-sa/002.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/not-sa/003.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/not-sa/004.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/not-sa/006.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/not-sa/007.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/not-sa/008.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/not-sa/009.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/ext-sa/001.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/ext-sa/002.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/not-wf/ext-sa/003.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/invalid/002.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/invalid/005.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/invalid/006.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/invalid/not-sa/022.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/001.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/002.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/003.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/004.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/005.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/006.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/007.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/008.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/009.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/010.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/011.xml [not validating:] input/output [validating:] input/output
+xmltest/not-wf/sa/163.xml [not-wf?] not-wf
+xmltest/not-wf/sa/164.xml [not-wf?] not-wf
+xmltest/not-wf/sa/165.xml [not-wf?] not-wf
+xmltest/not-wf/sa/166.xml [not-wf?] not-wf
+xmltest/not-wf/sa/167.xml [not-wf?] not-wf
+xmltest/not-wf/sa/168.xml [not-wf?] not-wf
+xmltest/not-wf/sa/169.xml [not-wf?] not-wf
+xmltest/not-wf/sa/170.xml [not-wf?] not-wf
+xmltest/not-wf/sa/171.xml [not-wf?] not-wf
+xmltest/not-wf/sa/172.xml [not-wf?] not-wf
+xmltest/not-wf/sa/173.xml [not-wf?] not-wf
+xmltest/not-wf/sa/174.xml [not-wf?] not-wf
+xmltest/not-wf/sa/175.xml [not-wf?] not-wf
+xmltest/not-wf/sa/176.xml [not-wf?] not-wf
+xmltest/not-wf/sa/177.xml [not-wf?] not-wf
+xmltest/not-wf/sa/178.xml [not-wf?] not-wf
+xmltest/not-wf/sa/179.xml [not-wf?] not-wf
+xmltest/not-wf/sa/180.xml [not-wf?] not-wf
+xmltest/not-wf/sa/181.xml [not-wf?] not-wf
+xmltest/not-wf/sa/182.xml [not-wf?] not-wf
+xmltest/not-wf/sa/183.xml [not-wf?] not-wf
+xmltest/not-wf/sa/184.xml [not-wf?] not-wf
+xmltest/not-wf/sa/185.xml [not-wf?] not-wf
+xmltest/not-wf/sa/186.xml [not-wf?] not-wf
+xmltest/not-wf/not-sa/001.xml [not-wf?] not-wf
+xmltest/not-wf/not-sa/002.xml [not-wf?] not-wf
+xmltest/not-wf/not-sa/003.xml [not-wf?] not-wf
+xmltest/not-wf/not-sa/004.xml [not-wf?] not-wf
+xmltest/not-wf/not-sa/006.xml [not-wf?] not-wf
+xmltest/not-wf/not-sa/007.xml [not-wf?] not-wf
+xmltest/not-wf/not-sa/008.xml [not-wf?] not-wf
+xmltest/not-wf/not-sa/009.xml [not-wf?] not-wf
+xmltest/not-wf/ext-sa/001.xml [not-wf?] not-wf
+xmltest/not-wf/ext-sa/002.xml [not-wf?] not-wf
+xmltest/not-wf/ext-sa/003.xml [not-wf?] not-wf
+xmltest/invalid/002.xml [not validating:] input [validating:] invalid
+xmltest/invalid/005.xml [not validating:] input [validating:] invalid
+xmltest/invalid/006.xml [not validating:] input [validating:] invalid
+xmltest/invalid/not-sa/022.xml [not validating:] input/output [validating:] invalid
+xmltest/valid/sa/001.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/002.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/003.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/004.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/005.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/006.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/007.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/008.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/009.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/010.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/011.xml [not validating:] input/output [validating:] input/output
valid/sa/012.xml: test applies to parsers without namespace support, skipping
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/013.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/014.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/015.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/016.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/017.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/018.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/019.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/020.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/021.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/022.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/023.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/024.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/025.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/026.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/027.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/028.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/029.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/030.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/031.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/032.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/033.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/034.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/035.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/036.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/037.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/038.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/039.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/040.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/041.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/042.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/043.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/044.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/045.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/046.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/047.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/048.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/049.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/050.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/051.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/052.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/053.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/054.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/055.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/056.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/057.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/058.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/059.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/060.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/061.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/062.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/063.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/064.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/065.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/066.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/067.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/068.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/069.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/070.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/071.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/072.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/073.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/074.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/075.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/076.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/077.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/078.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/079.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/080.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/081.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/082.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/083.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/084.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/085.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/086.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/087.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/088.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/089.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/090.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/091.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/092.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/093.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/094.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/095.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/096.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/097.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/098.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/099.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/100.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/101.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/102.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/103.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/104.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/105.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/106.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/107.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/108.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/109.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/110.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/111.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/112.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/113.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/114.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/115.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/116.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/117.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/118.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/sa/119.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/001.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/002.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/003.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/004.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/005.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/006.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/007.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/008.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/009.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/010.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/011.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/012.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/013.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/014.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/015.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/016.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/017.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/018.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/019.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/020.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/021.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/023.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/024.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/025.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/026.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/027.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/028.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/029.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/030.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/not-sa/031.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/001.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/002.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/003.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/004.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/005.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/006.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/007.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/008.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/009.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/011.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/012.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/013.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/xmltest/valid/ext-sa/014.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/japanese/pr-xml-little-endian.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/japanese/pr-xml-utf-16.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/japanese/pr-xml-utf-8.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/japanese/weekly-little-endian.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/japanese/weekly-utf-16.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/japanese/weekly-utf-8.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/pe01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/dtd00.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/dtd01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/element.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/ext01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/ext02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/not-sa01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/not-sa02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/not-sa03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/not-sa04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/notation01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/optional.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/required00.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/sa01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/sa02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/sa03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/sa04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/sa05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/sgml01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/v-lang01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/v-lang02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/v-lang03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/v-lang04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/v-lang05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/v-lang06.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/pe00.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/pe03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/valid/pe02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/dtd01.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/dtd02.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/dtd03.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/el01.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/el02.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/el03.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/el04.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/el05.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/el06.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id01.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id02.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id03.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id04.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id05.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id06.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id07.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id08.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/id09.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa01.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa02.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa04.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa05.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa06.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa07.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa08.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa09.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa10.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa11.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa12.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa13.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/not-sa14.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional01.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional02.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional03.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional04.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional05.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional06.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional07.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional08.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional09.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional10.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional11.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional12.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional13.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional14.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional20.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional21.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional22.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional23.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional24.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/optional25.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/required00.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/required01.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/required02.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/root.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr01.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr02.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr03.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr04.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr05.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr06.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr07.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr08.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr09.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr10.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr11.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr12.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr13.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr14.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr15.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/attr16.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/utf16b.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/utf16l.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/invalid/empty.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/not-sa03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/attlist11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/cond01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/cond02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/content01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/content02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/content03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/decl01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/dtd00.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/dtd01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/dtd02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/dtd03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/dtd04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/dtd05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/dtd07.xml [not-wf?] FAILED:
+xmltest/valid/sa/013.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/014.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/015.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/016.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/017.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/018.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/019.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/020.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/021.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/022.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/023.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/024.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/025.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/026.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/027.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/028.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/029.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/030.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/031.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/032.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/033.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/034.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/035.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/036.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/037.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/038.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/039.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/040.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/041.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/042.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/043.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/044.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/045.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/046.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/047.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/048.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/049.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/050.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/051.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/052.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/053.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/054.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/055.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/056.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/057.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/058.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/059.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/060.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/061.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/062.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/063.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/064.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/065.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/066.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/067.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/068.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/069.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/070.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/071.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/072.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/073.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/074.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/075.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/076.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/077.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/078.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/079.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/080.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/081.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/082.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/083.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/084.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/085.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/086.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/087.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/088.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/089.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/090.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/091.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/092.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/093.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/094.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/095.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/096.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/097.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/098.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/099.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/100.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/101.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/102.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/103.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/104.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/105.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/106.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/107.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/108.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/109.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/110.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/111.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/112.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/113.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/114.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/115.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/116.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/117.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/118.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/sa/119.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/001.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/002.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/003.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/004.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/005.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/006.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/007.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/008.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/009.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/010.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/011.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/012.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/013.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/014.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/015.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/016.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/017.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/018.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/019.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/020.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/021.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/023.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/024.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/025.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/026.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/027.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/028.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/029.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/030.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/not-sa/031.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/001.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/002.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/003.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/004.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/005.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/006.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/007.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/008.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/009.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/011.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/012.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/013.xml [not validating:] input/output [validating:] input/output
+xmltest/valid/ext-sa/014.xml [not validating:] input/output [validating:] input/output
+japanese/pr-xml-little-endian.xml [not validating:] input [validating:] input
+japanese/pr-xml-utf-16.xml [not validating:] input [validating:] input
+japanese/pr-xml-utf-8.xml [not validating:] input [validating:] input
+japanese/weekly-little-endian.xml [not validating:] input [validating:] input
+japanese/weekly-utf-16.xml [not validating:] input [validating:] input
+japanese/weekly-utf-8.xml [not validating:] input [validating:] input
+sun/valid/pe01.xml [not validating:] input [validating:] input
+sun/valid/dtd00.xml [not validating:] input/output [validating:] input/output
+sun/valid/dtd01.xml [not validating:] input/output [validating:] input/output
+sun/valid/element.xml [not validating:] input/output [validating:] input/output
+sun/valid/ext01.xml [not validating:] input/output [validating:] input/output
+sun/valid/ext02.xml [not validating:] input/output [validating:] input/output
+sun/valid/not-sa01.xml [not validating:] input/output [validating:] input/output
+sun/valid/not-sa02.xml [not validating:] input/output [validating:] input/output
+sun/valid/not-sa03.xml [not validating:] input/output [validating:] input/output
+sun/valid/not-sa04.xml [not validating:] input/output [validating:] input/output
+sun/valid/notation01.xml [not validating:] input/output [validating:] input/output
+sun/valid/optional.xml [not validating:] input/output [validating:] input/output
+sun/valid/required00.xml [not validating:] input/output [validating:] input/output
+sun/valid/sa01.xml [not validating:] input/output [validating:] input/output
+sun/valid/sa02.xml [not validating:] input/output [validating:] input/output
+sun/valid/sa03.xml [not validating:] input/output [validating:] input/output
+sun/valid/sa04.xml [not validating:] input/output [validating:] input/output
+sun/valid/sa05.xml [not validating:] input/output [validating:] input/output
+sun/valid/sgml01.xml [not validating:] input/output [validating:] input/output
+sun/valid/v-lang01.xml [not validating:] input/output [validating:] input/output
+sun/valid/v-lang02.xml [not validating:] input/output [validating:] input/output
+sun/valid/v-lang03.xml [not validating:] input/output [validating:] input/output
+sun/valid/v-lang04.xml [not validating:] input/output [validating:] input/output
+sun/valid/v-lang05.xml [not validating:] input/output [validating:] input/output
+sun/valid/v-lang06.xml [not validating:] input/output [validating:] input/output
+sun/valid/pe00.xml [not validating:] input/output [validating:] input/output
+sun/valid/pe03.xml [not validating:] input/output [validating:] input/output
+sun/valid/pe02.xml [not validating:] input/output [validating:] input/output
+sun/invalid/dtd01.xml [not validating:] input [validating:] invalid
+sun/invalid/dtd02.xml [not validating:] input [validating:] invalid
+sun/invalid/dtd03.xml [not validating:] input [validating:] invalid
+sun/invalid/el01.xml [not validating:] input [validating:] invalid
+sun/invalid/el02.xml [not validating:] input [validating:] invalid
+sun/invalid/el03.xml [not validating:] input [validating:] invalid
+sun/invalid/el04.xml [not validating:] input [validating:] invalid
+sun/invalid/el05.xml [not validating:] input [validating:] invalid
+sun/invalid/el06.xml [not validating:] input [validating:] invalid
+sun/invalid/id01.xml [not validating:] input [validating:] invalid
+sun/invalid/id02.xml [not validating:] input [validating:] invalid
+sun/invalid/id03.xml [not validating:] input [validating:] invalid
+sun/invalid/id04.xml [not validating:] input [validating:] invalid
+sun/invalid/id05.xml [not validating:] input [validating:] invalid
+sun/invalid/id06.xml [not validating:] input [validating:] invalid
+sun/invalid/id07.xml [not validating:] input [validating:] invalid
+sun/invalid/id08.xml [not validating:] input [validating:] invalid
+sun/invalid/id09.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa01.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa02.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa04.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa05.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa06.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa07.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa08.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa09.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa10.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa11.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa12.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa13.xml [not validating:] input [validating:] invalid
+sun/invalid/not-sa14.xml [not validating:] input [validating:] invalid
+sun/invalid/optional01.xml [not validating:] input [validating:] invalid
+sun/invalid/optional02.xml [not validating:] input [validating:] invalid
+sun/invalid/optional03.xml [not validating:] input [validating:] invalid
+sun/invalid/optional04.xml [not validating:] input [validating:] invalid
+sun/invalid/optional05.xml [not validating:] input [validating:] invalid
+sun/invalid/optional06.xml [not validating:] input [validating:] invalid
+sun/invalid/optional07.xml [not validating:] input [validating:] invalid
+sun/invalid/optional08.xml [not validating:] input [validating:] invalid
+sun/invalid/optional09.xml [not validating:] input [validating:] invalid
+sun/invalid/optional10.xml [not validating:] input [validating:] invalid
+sun/invalid/optional11.xml [not validating:] input [validating:] invalid
+sun/invalid/optional12.xml [not validating:] input [validating:] invalid
+sun/invalid/optional13.xml [not validating:] input [validating:] invalid
+sun/invalid/optional14.xml [not validating:] input [validating:] invalid
+sun/invalid/optional20.xml [not validating:] input [validating:] invalid
+sun/invalid/optional21.xml [not validating:] input [validating:] invalid
+sun/invalid/optional22.xml [not validating:] input [validating:] invalid
+sun/invalid/optional23.xml [not validating:] input [validating:] invalid
+sun/invalid/optional24.xml [not validating:] input [validating:] invalid
+sun/invalid/optional25.xml [not validating:] input [validating:] invalid
+sun/invalid/required00.xml [not validating:] input [validating:] invalid
+sun/invalid/required01.xml [not validating:] input [validating:] invalid
+sun/invalid/required02.xml [not validating:] input [validating:] invalid
+sun/invalid/root.xml [not validating:] input [validating:] invalid
+sun/invalid/attr01.xml [not validating:] input [validating:] invalid
+sun/invalid/attr02.xml [not validating:] input [validating:] invalid
+sun/invalid/attr03.xml [not validating:] input [validating:] invalid
+sun/invalid/attr04.xml [not validating:] input [validating:] invalid
+sun/invalid/attr05.xml [not validating:] input [validating:] invalid
+sun/invalid/attr06.xml [not validating:] input [validating:] invalid
+sun/invalid/attr07.xml [not validating:] input [validating:] invalid
+sun/invalid/attr08.xml [not validating:] input [validating:] invalid
+sun/invalid/attr09.xml [not validating:] input [validating:] invalid
+sun/invalid/attr10.xml [not validating:] input [validating:] invalid
+sun/invalid/attr11.xml [not validating:] input [validating:] invalid
+sun/invalid/attr12.xml [not validating:] input [validating:] invalid
+sun/invalid/attr13.xml [not validating:] input [validating:] invalid
+sun/invalid/attr14.xml [not validating:] input [validating:] invalid
+sun/invalid/attr15.xml [not validating:] input [validating:] invalid
+sun/invalid/attr16.xml [not validating:] input [validating:] invalid
+sun/invalid/utf16b.xml [not validating:] input [validating:] invalid
+sun/invalid/utf16l.xml [not validating:] input [validating:] invalid
+sun/invalid/empty.xml [not validating:] input [validating:] invalid
+sun/not-wf/not-sa03.xml [not-wf?] not-wf
+sun/not-wf/attlist01.xml [not-wf?] not-wf
+sun/not-wf/attlist02.xml [not-wf?] not-wf
+sun/not-wf/attlist03.xml [not-wf?] not-wf
+sun/not-wf/attlist04.xml [not-wf?] not-wf
+sun/not-wf/attlist05.xml [not-wf?] not-wf
+sun/not-wf/attlist06.xml [not-wf?] not-wf
+sun/not-wf/attlist07.xml [not-wf?] not-wf
+sun/not-wf/attlist08.xml [not-wf?] not-wf
+sun/not-wf/attlist09.xml [not-wf?] not-wf
+sun/not-wf/attlist10.xml [not-wf?] not-wf
+sun/not-wf/attlist11.xml [not-wf?] not-wf
+sun/not-wf/cond01.xml [not-wf?] not-wf
+sun/not-wf/cond02.xml [not-wf?] not-wf
+sun/not-wf/content01.xml [not-wf?] not-wf
+sun/not-wf/content02.xml [not-wf?] not-wf
+sun/not-wf/content03.xml [not-wf?] not-wf
+sun/not-wf/decl01.xml [not-wf?] not-wf
+sun/not-wf/dtd00.xml [not-wf?] not-wf
+sun/not-wf/dtd01.xml [not-wf?] not-wf
+sun/not-wf/dtd02.xml [not-wf?] not-wf
+sun/not-wf/dtd03.xml [not-wf?] not-wf
+sun/not-wf/dtd04.xml [not-wf?] not-wf
+sun/not-wf/dtd05.xml [not-wf?] not-wf
+sun/not-wf/dtd07.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Text declarations (which optionally begin any external entity)
are required to have "encoding=...". ]
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/element00.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/element01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/element02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/element03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/element04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/encoding01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/encoding02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/encoding03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/encoding04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/encoding05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/encoding06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/encoding07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/pi.xml [not-wf?] FAILED:
+sun/not-wf/element00.xml [not-wf?] not-wf
+sun/not-wf/element01.xml [not-wf?] not-wf
+sun/not-wf/element02.xml [not-wf?] not-wf
+sun/not-wf/element03.xml [not-wf?] not-wf
+sun/not-wf/element04.xml [not-wf?] not-wf
+sun/not-wf/encoding01.xml [not-wf?] not-wf
+sun/not-wf/encoding02.xml [not-wf?] not-wf
+sun/not-wf/encoding03.xml [not-wf?] not-wf
+sun/not-wf/encoding04.xml [not-wf?] not-wf
+sun/not-wf/encoding05.xml [not-wf?] not-wf
+sun/not-wf/encoding06.xml [not-wf?] not-wf
+sun/not-wf/encoding07.xml [not-wf?] not-wf
+sun/not-wf/pi.xml [not-wf?] FAILED:
well-formedness violation not detected
[
No space between PI target name and data]
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/pubid01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/pubid02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/pubid03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/pubid04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/pubid05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml03.xml [not-wf?] FAILED:
+sun/not-wf/pubid01.xml [not-wf?] not-wf
+sun/not-wf/pubid02.xml [not-wf?] not-wf
+sun/not-wf/pubid03.xml [not-wf?] not-wf
+sun/not-wf/pubid04.xml [not-wf?] not-wf
+sun/not-wf/pubid05.xml [not-wf?] not-wf
+sun/not-wf/sgml01.xml [not-wf?] not-wf
+sun/not-wf/sgml02.xml [not-wf?] not-wf
+sun/not-wf/sgml03.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Comments may not contain "--"]
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/sun/not-wf/sgml13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p01pass2.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p06pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p07pass1.xml [not validating:] input [validating:] input
+sun/not-wf/sgml04.xml [not-wf?] not-wf
+sun/not-wf/sgml05.xml [not-wf?] not-wf
+sun/not-wf/sgml06.xml [not-wf?] not-wf
+sun/not-wf/sgml07.xml [not-wf?] not-wf
+sun/not-wf/sgml08.xml [not-wf?] not-wf
+sun/not-wf/sgml09.xml [not-wf?] not-wf
+sun/not-wf/sgml10.xml [not-wf?] not-wf
+sun/not-wf/sgml11.xml [not-wf?] not-wf
+sun/not-wf/sgml12.xml [not-wf?] not-wf
+sun/not-wf/sgml13.xml [not-wf?] not-wf
+oasis/p01pass2.xml [not validating:] input [validating:] input
+oasis/p06pass1.xml [not validating:] input [validating:] input
+oasis/p07pass1.xml [not validating:] input [validating:] input
p08pass1.xml: test applies to parsers without namespace support, skipping
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p09pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p12pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p22pass4.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p22pass5.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p22pass6.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p28pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p28pass3.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p28pass4.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p28pass5.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p29pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p30pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p30pass2.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p31pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p31pass2.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p43pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p45pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p46pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p47pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p48pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p49pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p50pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p51pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p52pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p53pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p54pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p55pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p56pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p57pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p59pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p60pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p61pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p62pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p63pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p64pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p68pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p69pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p70pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p71pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p72pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p73pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p76pass1.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p01pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p01pass3.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03pass1.xml [not validating:] input [validating:] invalid
+oasis/p09pass1.xml [not validating:] input [validating:] input
+oasis/p12pass1.xml [not validating:] input [validating:] input
+oasis/p22pass4.xml [not validating:] input [validating:] input
+oasis/p22pass5.xml [not validating:] input [validating:] input
+oasis/p22pass6.xml [not validating:] input [validating:] input
+oasis/p28pass1.xml [not validating:] input [validating:] input
+oasis/p28pass3.xml [not validating:] input [validating:] input
+oasis/p28pass4.xml [not validating:] input [validating:] input
+oasis/p28pass5.xml [not validating:] input [validating:] input
+oasis/p29pass1.xml [not validating:] input [validating:] input
+oasis/p30pass1.xml [not validating:] input [validating:] input
+oasis/p30pass2.xml [not validating:] input [validating:] input
+oasis/p31pass1.xml [not validating:] input [validating:] input
+oasis/p31pass2.xml [not validating:] input [validating:] input
+oasis/p43pass1.xml [not validating:] input [validating:] input
+oasis/p45pass1.xml [not validating:] input [validating:] input
+oasis/p46pass1.xml [not validating:] input [validating:] input
+oasis/p47pass1.xml [not validating:] input [validating:] input
+oasis/p48pass1.xml [not validating:] input [validating:] input
+oasis/p49pass1.xml [not validating:] input [validating:] input
+oasis/p50pass1.xml [not validating:] input [validating:] input
+oasis/p51pass1.xml [not validating:] input [validating:] input
+oasis/p52pass1.xml [not validating:] input [validating:] input
+oasis/p53pass1.xml [not validating:] input [validating:] input
+oasis/p54pass1.xml [not validating:] input [validating:] input
+oasis/p55pass1.xml [not validating:] input [validating:] input
+oasis/p56pass1.xml [not validating:] input [validating:] input
+oasis/p57pass1.xml [not validating:] input [validating:] input
+oasis/p58pass1.xml [not validating:] input [validating:] input
+oasis/p59pass1.xml [not validating:] input [validating:] input
+oasis/p60pass1.xml [not validating:] input [validating:] input
+oasis/p61pass1.xml [not validating:] input [validating:] input
+oasis/p62pass1.xml [not validating:] input [validating:] input
+oasis/p63pass1.xml [not validating:] input [validating:] input
+oasis/p64pass1.xml [not validating:] input [validating:] input
+oasis/p68pass1.xml [not validating:] input [validating:] input
+oasis/p69pass1.xml [not validating:] input [validating:] input
+oasis/p70pass1.xml [not validating:] input [validating:] input
+oasis/p71pass1.xml [not validating:] input [validating:] input
+oasis/p72pass1.xml [not validating:] input [validating:] input
+oasis/p73pass1.xml [not validating:] input [validating:] input
+oasis/p76pass1.xml [not validating:] input [validating:] input
+oasis/p01pass1.xml [not validating:] input [validating:] invalid
+oasis/p01pass3.xml [not validating:] input [validating:] invalid
+oasis/p03pass1.xml [not validating:] input [validating:] invalid
p04pass1.xml: test applies to parsers without namespace support, skipping
p05pass1.xml: test applies to parsers without namespace support, skipping
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p06fail1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p08fail1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p08fail2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p10pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p14pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p15pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p16pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p16pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p16pass3.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p18pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p22pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p22pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p22pass3.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23pass3.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23pass4.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p24pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p24pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p24pass3.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p24pass4.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p25pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p25pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p26pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p27pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p27pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p27pass3.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p27pass4.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p32pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p32pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p39pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p39pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p40pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p40pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p40pass3.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p40pass4.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p41pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p41pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p42pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p42pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44pass2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44pass3.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44pass4.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44pass5.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p66pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p74pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p75pass1.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/e2.xml [not validating:] input [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p01fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p01fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p01fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p01fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail14.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail15.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail16.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail17.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail18.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail19.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail20.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail21.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail22.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail23.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail24.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail25.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail26.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail27.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail28.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail29.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail30.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail31.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail6.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail7.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail8.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p02fail9.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail14.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail15.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail16.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail17.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail18.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail19.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail20.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail21.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail22.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail23.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail24.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail25.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail26.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail27.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail28.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail29.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail7.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail8.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p03fail9.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p04fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p04fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p04fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p05fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p05fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p05fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p05fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p05fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p09fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p09fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p09fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p09fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p09fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p10fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p10fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p10fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p11fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p11fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p12fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p12fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p12fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p12fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p12fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p12fail6.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p12fail7.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p14fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p14fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p14fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p15fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p15fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p15fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p16fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p16fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p16fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p18fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p18fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p18fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p22fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p22fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p23fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p24fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p24fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p25fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p26fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p26fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p27fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p28fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p29fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p30fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p31fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p32fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p32fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p32fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p32fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p32fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p39fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p39fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p39fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p39fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p39fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p40fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p40fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p40fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p40fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p41fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p41fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p41fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p42fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p42fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p42fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p43fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p43fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p43fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p44fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p45fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p45fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p45fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p45fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p46fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p46fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p46fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p46fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p46fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p46fail6.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p47fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p47fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p47fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p47fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p48fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p48fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p49fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p50fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p51fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p51fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p51fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p51fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p51fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p51fail6.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p51fail7.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p52fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p52fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p53fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p53fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p53fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p53fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p53fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p54fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p55fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p56fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p56fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p56fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p56fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p56fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p57fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58fail6.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58fail7.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p58fail8.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p59fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p59fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p59fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p60fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p60fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p60fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p60fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p60fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p61fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p62fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p62fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p63fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p63fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p64fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p64fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p66fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p66fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p66fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p66fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p66fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p66fail6.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p68fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p68fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p68fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p69fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p69fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p69fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p70fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p71fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p71fail2.xml [not-wf?] FAILED:
+oasis/p06fail1.xml [not validating:] input [validating:] invalid
+oasis/p08fail1.xml [not validating:] input [validating:] invalid
+oasis/p08fail2.xml [not validating:] input [validating:] invalid
+oasis/p10pass1.xml [not validating:] input [validating:] invalid
+oasis/p14pass1.xml [not validating:] input [validating:] invalid
+oasis/p15pass1.xml [not validating:] input [validating:] invalid
+oasis/p16pass1.xml [not validating:] input [validating:] invalid
+oasis/p16pass2.xml [not validating:] input [validating:] invalid
+oasis/p16pass3.xml [not validating:] input [validating:] invalid
+oasis/p18pass1.xml [not validating:] input [validating:] invalid
+oasis/p22pass1.xml [not validating:] input [validating:] invalid
+oasis/p22pass2.xml [not validating:] input [validating:] invalid
+oasis/p22pass3.xml [not validating:] input [validating:] invalid
+oasis/p23pass1.xml [not validating:] input [validating:] invalid
+oasis/p23pass2.xml [not validating:] input [validating:] invalid
+oasis/p23pass3.xml [not validating:] input [validating:] invalid
+oasis/p23pass4.xml [not validating:] input [validating:] invalid
+oasis/p24pass1.xml [not validating:] input [validating:] invalid
+oasis/p24pass2.xml [not validating:] input [validating:] invalid
+oasis/p24pass3.xml [not validating:] input [validating:] invalid
+oasis/p24pass4.xml [not validating:] input [validating:] invalid
+oasis/p25pass1.xml [not validating:] input [validating:] invalid
+oasis/p25pass2.xml [not validating:] input [validating:] invalid
+oasis/p26pass1.xml [not validating:] input [validating:] invalid
+oasis/p27pass1.xml [not validating:] input [validating:] invalid
+oasis/p27pass2.xml [not validating:] input [validating:] invalid
+oasis/p27pass3.xml [not validating:] input [validating:] invalid
+oasis/p27pass4.xml [not validating:] input [validating:] invalid
+oasis/p32pass1.xml [not validating:] input [validating:] invalid
+oasis/p32pass2.xml [not validating:] input [validating:] invalid
+oasis/p39pass1.xml [not validating:] input [validating:] invalid
+oasis/p39pass2.xml [not validating:] input [validating:] invalid
+oasis/p40pass1.xml [not validating:] input [validating:] invalid
+oasis/p40pass2.xml [not validating:] input [validating:] invalid
+oasis/p40pass3.xml [not validating:] input [validating:] invalid
+oasis/p40pass4.xml [not validating:] input [validating:] invalid
+oasis/p41pass1.xml [not validating:] input [validating:] invalid
+oasis/p41pass2.xml [not validating:] input [validating:] invalid
+oasis/p42pass1.xml [not validating:] input [validating:] invalid
+oasis/p42pass2.xml [not validating:] input [validating:] invalid
+oasis/p44pass1.xml [not validating:] input [validating:] invalid
+oasis/p44pass2.xml [not validating:] input [validating:] invalid
+oasis/p44pass3.xml [not validating:] input [validating:] invalid
+oasis/p44pass4.xml [not validating:] input [validating:] invalid
+oasis/p44pass5.xml [not validating:] input [validating:] invalid
+oasis/p66pass1.xml [not validating:] input [validating:] invalid
+oasis/p74pass1.xml [not validating:] input [validating:] invalid
+oasis/p75pass1.xml [not validating:] input [validating:] invalid
+oasis/e2.xml [not validating:] input [validating:] invalid
+oasis/p01fail1.xml [not-wf?] not-wf
+oasis/p01fail2.xml [not-wf?] not-wf
+oasis/p01fail3.xml [not-wf?] not-wf
+oasis/p01fail4.xml [not-wf?] not-wf
+oasis/p02fail1.xml [not-wf?] not-wf
+oasis/p02fail10.xml [not-wf?] not-wf
+oasis/p02fail11.xml [not-wf?] not-wf
+oasis/p02fail12.xml [not-wf?] not-wf
+oasis/p02fail13.xml [not-wf?] not-wf
+oasis/p02fail14.xml [not-wf?] not-wf
+oasis/p02fail15.xml [not-wf?] not-wf
+oasis/p02fail16.xml [not-wf?] not-wf
+oasis/p02fail17.xml [not-wf?] not-wf
+oasis/p02fail18.xml [not-wf?] not-wf
+oasis/p02fail19.xml [not-wf?] not-wf
+oasis/p02fail2.xml [not-wf?] not-wf
+oasis/p02fail20.xml [not-wf?] not-wf
+oasis/p02fail21.xml [not-wf?] not-wf
+oasis/p02fail22.xml [not-wf?] not-wf
+oasis/p02fail23.xml [not-wf?] not-wf
+oasis/p02fail24.xml [not-wf?] not-wf
+oasis/p02fail25.xml [not-wf?] not-wf
+oasis/p02fail26.xml [not-wf?] not-wf
+oasis/p02fail27.xml [not-wf?] not-wf
+oasis/p02fail28.xml [not-wf?] not-wf
+oasis/p02fail29.xml [not-wf?] not-wf
+oasis/p02fail3.xml [not-wf?] not-wf
+oasis/p02fail30.xml [not-wf?] not-wf
+oasis/p02fail31.xml [not-wf?] not-wf
+oasis/p02fail4.xml [not-wf?] not-wf
+oasis/p02fail5.xml [not-wf?] not-wf
+oasis/p02fail6.xml [not-wf?] not-wf
+oasis/p02fail7.xml [not-wf?] not-wf
+oasis/p02fail8.xml [not-wf?] not-wf
+oasis/p02fail9.xml [not-wf?] not-wf
+oasis/p03fail1.xml [not-wf?] not-wf
+oasis/p03fail10.xml [not-wf?] not-wf
+oasis/p03fail11.xml [not-wf?] not-wf
+oasis/p03fail12.xml [not-wf?] not-wf
+oasis/p03fail13.xml [not-wf?] not-wf
+oasis/p03fail14.xml [not-wf?] not-wf
+oasis/p03fail15.xml [not-wf?] not-wf
+oasis/p03fail16.xml [not-wf?] not-wf
+oasis/p03fail17.xml [not-wf?] not-wf
+oasis/p03fail18.xml [not-wf?] not-wf
+oasis/p03fail19.xml [not-wf?] not-wf
+oasis/p03fail2.xml [not-wf?] not-wf
+oasis/p03fail20.xml [not-wf?] not-wf
+oasis/p03fail21.xml [not-wf?] not-wf
+oasis/p03fail22.xml [not-wf?] not-wf
+oasis/p03fail23.xml [not-wf?] not-wf
+oasis/p03fail24.xml [not-wf?] not-wf
+oasis/p03fail25.xml [not-wf?] not-wf
+oasis/p03fail26.xml [not-wf?] not-wf
+oasis/p03fail27.xml [not-wf?] not-wf
+oasis/p03fail28.xml [not-wf?] not-wf
+oasis/p03fail29.xml [not-wf?] not-wf
+oasis/p03fail3.xml [not-wf?] not-wf
+oasis/p03fail4.xml [not-wf?] not-wf
+oasis/p03fail5.xml [not-wf?] not-wf
+oasis/p03fail7.xml [not-wf?] not-wf
+oasis/p03fail8.xml [not-wf?] not-wf
+oasis/p03fail9.xml [not-wf?] not-wf
+oasis/p04fail1.xml [not-wf?] not-wf
+oasis/p04fail2.xml [not-wf?] not-wf
+oasis/p04fail3.xml [not-wf?] not-wf
+oasis/p05fail1.xml [not-wf?] not-wf
+oasis/p05fail2.xml [not-wf?] not-wf
+oasis/p05fail3.xml [not-wf?] not-wf
+oasis/p05fail4.xml [not-wf?] not-wf
+oasis/p05fail5.xml [not-wf?] not-wf
+oasis/p09fail1.xml [not-wf?] not-wf
+oasis/p09fail2.xml [not-wf?] not-wf
+oasis/p09fail3.xml [not-wf?] not-wf
+oasis/p09fail4.xml [not-wf?] not-wf
+oasis/p09fail5.xml [not-wf?] not-wf
+oasis/p10fail1.xml [not-wf?] not-wf
+oasis/p10fail2.xml [not-wf?] not-wf
+oasis/p10fail3.xml [not-wf?] not-wf
+oasis/p11fail1.xml [not-wf?] not-wf
+oasis/p11fail2.xml [not-wf?] not-wf
+oasis/p12fail1.xml [not-wf?] not-wf
+oasis/p12fail2.xml [not-wf?] not-wf
+oasis/p12fail3.xml [not-wf?] not-wf
+oasis/p12fail4.xml [not-wf?] not-wf
+oasis/p12fail5.xml [not-wf?] not-wf
+oasis/p12fail6.xml [not-wf?] not-wf
+oasis/p12fail7.xml [not-wf?] not-wf
+oasis/p14fail1.xml [not-wf?] not-wf
+oasis/p14fail2.xml [not-wf?] not-wf
+oasis/p14fail3.xml [not-wf?] not-wf
+oasis/p15fail1.xml [not-wf?] not-wf
+oasis/p15fail2.xml [not-wf?] not-wf
+oasis/p15fail3.xml [not-wf?] not-wf
+oasis/p16fail1.xml [not-wf?] not-wf
+oasis/p16fail2.xml [not-wf?] not-wf
+oasis/p16fail3.xml [not-wf?] not-wf
+oasis/p18fail1.xml [not-wf?] not-wf
+oasis/p18fail2.xml [not-wf?] not-wf
+oasis/p18fail3.xml [not-wf?] not-wf
+oasis/p22fail1.xml [not-wf?] not-wf
+oasis/p22fail2.xml [not-wf?] not-wf
+oasis/p23fail1.xml [not-wf?] not-wf
+oasis/p23fail2.xml [not-wf?] not-wf
+oasis/p23fail3.xml [not-wf?] not-wf
+oasis/p23fail4.xml [not-wf?] not-wf
+oasis/p23fail5.xml [not-wf?] not-wf
+oasis/p24fail1.xml [not-wf?] not-wf
+oasis/p24fail2.xml [not-wf?] not-wf
+oasis/p25fail1.xml [not-wf?] not-wf
+oasis/p26fail1.xml [not-wf?] not-wf
+oasis/p26fail2.xml [not-wf?] not-wf
+oasis/p27fail1.xml [not-wf?] not-wf
+oasis/p28fail1.xml [not-wf?] not-wf
+oasis/p29fail1.xml [not-wf?] not-wf
+oasis/p30fail1.xml [not-wf?] not-wf
+oasis/p31fail1.xml [not-wf?] not-wf
+oasis/p32fail1.xml [not-wf?] not-wf
+oasis/p32fail2.xml [not-wf?] not-wf
+oasis/p32fail3.xml [not-wf?] not-wf
+oasis/p32fail4.xml [not-wf?] not-wf
+oasis/p32fail5.xml [not-wf?] not-wf
+oasis/p39fail1.xml [not-wf?] not-wf
+oasis/p39fail2.xml [not-wf?] not-wf
+oasis/p39fail3.xml [not-wf?] not-wf
+oasis/p39fail4.xml [not-wf?] not-wf
+oasis/p39fail5.xml [not-wf?] not-wf
+oasis/p40fail1.xml [not-wf?] not-wf
+oasis/p40fail2.xml [not-wf?] not-wf
+oasis/p40fail3.xml [not-wf?] not-wf
+oasis/p40fail4.xml [not-wf?] not-wf
+oasis/p41fail1.xml [not-wf?] not-wf
+oasis/p41fail2.xml [not-wf?] not-wf
+oasis/p41fail3.xml [not-wf?] not-wf
+oasis/p42fail1.xml [not-wf?] not-wf
+oasis/p42fail2.xml [not-wf?] not-wf
+oasis/p42fail3.xml [not-wf?] not-wf
+oasis/p43fail1.xml [not-wf?] not-wf
+oasis/p43fail2.xml [not-wf?] not-wf
+oasis/p43fail3.xml [not-wf?] not-wf
+oasis/p44fail1.xml [not-wf?] not-wf
+oasis/p44fail2.xml [not-wf?] not-wf
+oasis/p44fail3.xml [not-wf?] not-wf
+oasis/p44fail4.xml [not-wf?] not-wf
+oasis/p44fail5.xml [not-wf?] not-wf
+oasis/p45fail1.xml [not-wf?] not-wf
+oasis/p45fail2.xml [not-wf?] not-wf
+oasis/p45fail3.xml [not-wf?] not-wf
+oasis/p45fail4.xml [not-wf?] not-wf
+oasis/p46fail1.xml [not-wf?] not-wf
+oasis/p46fail2.xml [not-wf?] not-wf
+oasis/p46fail3.xml [not-wf?] not-wf
+oasis/p46fail4.xml [not-wf?] not-wf
+oasis/p46fail5.xml [not-wf?] not-wf
+oasis/p46fail6.xml [not-wf?] not-wf
+oasis/p47fail1.xml [not-wf?] not-wf
+oasis/p47fail2.xml [not-wf?] not-wf
+oasis/p47fail3.xml [not-wf?] not-wf
+oasis/p47fail4.xml [not-wf?] not-wf
+oasis/p48fail1.xml [not-wf?] not-wf
+oasis/p48fail2.xml [not-wf?] not-wf
+oasis/p49fail1.xml [not-wf?] not-wf
+oasis/p50fail1.xml [not-wf?] not-wf
+oasis/p51fail1.xml [not-wf?] not-wf
+oasis/p51fail2.xml [not-wf?] not-wf
+oasis/p51fail3.xml [not-wf?] not-wf
+oasis/p51fail4.xml [not-wf?] not-wf
+oasis/p51fail5.xml [not-wf?] not-wf
+oasis/p51fail6.xml [not-wf?] not-wf
+oasis/p51fail7.xml [not-wf?] not-wf
+oasis/p52fail1.xml [not-wf?] not-wf
+oasis/p52fail2.xml [not-wf?] not-wf
+oasis/p53fail1.xml [not-wf?] not-wf
+oasis/p53fail2.xml [not-wf?] not-wf
+oasis/p53fail3.xml [not-wf?] not-wf
+oasis/p53fail4.xml [not-wf?] not-wf
+oasis/p53fail5.xml [not-wf?] not-wf
+oasis/p54fail1.xml [not-wf?] not-wf
+oasis/p55fail1.xml [not-wf?] not-wf
+oasis/p56fail1.xml [not-wf?] not-wf
+oasis/p56fail2.xml [not-wf?] not-wf
+oasis/p56fail3.xml [not-wf?] not-wf
+oasis/p56fail4.xml [not-wf?] not-wf
+oasis/p56fail5.xml [not-wf?] not-wf
+oasis/p57fail1.xml [not-wf?] not-wf
+oasis/p58fail1.xml [not-wf?] not-wf
+oasis/p58fail2.xml [not-wf?] not-wf
+oasis/p58fail3.xml [not-wf?] not-wf
+oasis/p58fail4.xml [not-wf?] not-wf
+oasis/p58fail5.xml [not-wf?] not-wf
+oasis/p58fail6.xml [not-wf?] not-wf
+oasis/p58fail7.xml [not-wf?] not-wf
+oasis/p58fail8.xml [not-wf?] not-wf
+oasis/p59fail1.xml [not-wf?] not-wf
+oasis/p59fail2.xml [not-wf?] not-wf
+oasis/p59fail3.xml [not-wf?] not-wf
+oasis/p60fail1.xml [not-wf?] not-wf
+oasis/p60fail2.xml [not-wf?] not-wf
+oasis/p60fail3.xml [not-wf?] not-wf
+oasis/p60fail4.xml [not-wf?] not-wf
+oasis/p60fail5.xml [not-wf?] not-wf
+oasis/p61fail1.xml [not-wf?] not-wf
+oasis/p62fail1.xml [not-wf?] not-wf
+oasis/p62fail2.xml [not-wf?] not-wf
+oasis/p63fail1.xml [not-wf?] not-wf
+oasis/p63fail2.xml [not-wf?] not-wf
+oasis/p64fail1.xml [not-wf?] not-wf
+oasis/p64fail2.xml [not-wf?] not-wf
+oasis/p66fail1.xml [not-wf?] not-wf
+oasis/p66fail2.xml [not-wf?] not-wf
+oasis/p66fail3.xml [not-wf?] not-wf
+oasis/p66fail4.xml [not-wf?] not-wf
+oasis/p66fail5.xml [not-wf?] not-wf
+oasis/p66fail6.xml [not-wf?] not-wf
+oasis/p68fail1.xml [not-wf?] not-wf
+oasis/p68fail2.xml [not-wf?] not-wf
+oasis/p68fail3.xml [not-wf?] not-wf
+oasis/p69fail1.xml [not-wf?] not-wf
+oasis/p69fail2.xml [not-wf?] not-wf
+oasis/p69fail3.xml [not-wf?] not-wf
+oasis/p70fail1.xml [not-wf?] not-wf
+oasis/p71fail1.xml [not-wf?] not-wf
+oasis/p71fail2.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Entity name is a Name, not an NMToken
]
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p71fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p71fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p72fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p72fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p72fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p72fail4.xml [not-wf?] FAILED:
+oasis/p71fail3.xml [not-wf?] not-wf
+oasis/p71fail4.xml [not-wf?] not-wf
+oasis/p72fail1.xml [not-wf?] not-wf
+oasis/p72fail2.xml [not-wf?] not-wf
+oasis/p72fail3.xml [not-wf?] not-wf
+oasis/p72fail4.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Entity name is a name, not an NMToken
]
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p73fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p73fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p73fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p73fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p73fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p74fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p74fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p74fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p75fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p75fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p75fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p75fail4.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p75fail5.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p75fail6.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p76fail1.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p76fail2.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p76fail3.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/oasis/p76fail4.xml [not-wf?] FAILED:
+oasis/p73fail1.xml [not-wf?] not-wf
+oasis/p73fail2.xml [not-wf?] not-wf
+oasis/p73fail3.xml [not-wf?] not-wf
+oasis/p73fail4.xml [not-wf?] not-wf
+oasis/p73fail5.xml [not-wf?] not-wf
+oasis/p74fail1.xml [not-wf?] not-wf
+oasis/p74fail2.xml [not-wf?] not-wf
+oasis/p74fail3.xml [not-wf?] not-wf
+oasis/p75fail1.xml [not-wf?] not-wf
+oasis/p75fail2.xml [not-wf?] not-wf
+oasis/p75fail3.xml [not-wf?] not-wf
+oasis/p75fail4.xml [not-wf?] not-wf
+oasis/p75fail5.xml [not-wf?] not-wf
+oasis/p75fail6.xml [not-wf?] not-wf
+oasis/p76fail1.xml [not-wf?] not-wf
+oasis/p76fail2.xml [not-wf?] not-wf
+oasis/p76fail3.xml [not-wf?] not-wf
+oasis/p76fail4.xml [not-wf?] FAILED:
well-formedness violation not detected
[
notation names are Names
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P28/ibm28i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P32/ibm32i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P32/ibm32i03.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P32/ibm32i04.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P39/ibm39i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P39/ibm39i02.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P39/ibm39i03.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P39/ibm39i04.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P41/ibm41i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P41/ibm41i02.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P45/ibm45i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P49/ibm49i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P50/ibm50i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P51/ibm51i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P51/ibm51i03.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i02.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i03.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i05.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i06.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i07.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i08.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i09.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i10.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i11.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i12.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i13.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i14.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i15.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i16.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i17.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P56/ibm56i18.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P58/ibm58i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P58/ibm58i02.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P59/ibm59i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P60/ibm60i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P60/ibm60i02.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P60/ibm60i03.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P60/ibm60i04.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/invalid/P76/ibm76i01.xml [not validating:] input/output [validating:] invalid
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P01/ibm01n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P01/ibm01n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P01/ibm01n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n14.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n15.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n16.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n17.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n18.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n19.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n20.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n21.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n22.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n23.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n24.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n25.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n26.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n27.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n28.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n29.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n30.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n31.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n32.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P02/ibm02n33.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P03/ibm03n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n14.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n15.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n16.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n17.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P04/ibm04n18.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P05/ibm05n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P05/ibm05n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P05/ibm05n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P09/ibm09n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P09/ibm09n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P09/ibm09n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P09/ibm09n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P10/ibm10n01.xml [not-wf?] FAILED:
+ibm/invalid/P28/ibm28i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P32/ibm32i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P32/ibm32i03.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P32/ibm32i04.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P39/ibm39i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P39/ibm39i02.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P39/ibm39i03.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P39/ibm39i04.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P41/ibm41i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P41/ibm41i02.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P45/ibm45i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P49/ibm49i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P50/ibm50i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P51/ibm51i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P51/ibm51i03.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i02.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i03.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i05.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i06.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i07.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i08.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i09.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i10.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i11.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i12.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i13.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i14.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i15.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i16.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i17.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P56/ibm56i18.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P58/ibm58i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P58/ibm58i02.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P59/ibm59i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P60/ibm60i01.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P60/ibm60i02.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P60/ibm60i03.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P60/ibm60i04.xml [not validating:] input/output [validating:] invalid
+ibm/invalid/P76/ibm76i01.xml [not validating:] input/output [validating:] invalid
+ibm/not-wf/P01/ibm01n01.xml [not-wf?] not-wf
+ibm/not-wf/P01/ibm01n02.xml [not-wf?] not-wf
+ibm/not-wf/P01/ibm01n03.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n01.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n02.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n03.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n04.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n05.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n06.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n07.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n08.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n09.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n10.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n11.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n12.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n13.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n14.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n15.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n16.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n17.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n18.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n19.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n20.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n21.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n22.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n23.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n24.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n25.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n26.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n27.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n28.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n29.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n30.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n31.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n32.xml [not-wf?] not-wf
+ibm/not-wf/P02/ibm02n33.xml [not-wf?] not-wf
+ibm/not-wf/P03/ibm03n01.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n01.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n02.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n03.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n04.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n05.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n06.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n07.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n08.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n09.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n10.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n11.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n12.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n13.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n14.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n15.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n16.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n17.xml [not-wf?] not-wf
+ibm/not-wf/P04/ibm04n18.xml [not-wf?] not-wf
+ibm/not-wf/P05/ibm05n01.xml [not-wf?] not-wf
+ibm/not-wf/P05/ibm05n02.xml [not-wf?] not-wf
+ibm/not-wf/P05/ibm05n03.xml [not-wf?] not-wf
+ibm/not-wf/P09/ibm09n01.xml [not-wf?] not-wf
+ibm/not-wf/P09/ibm09n02.xml [not-wf?] not-wf
+ibm/not-wf/P09/ibm09n03.xml [not-wf?] not-wf
+ibm/not-wf/P09/ibm09n04.xml [not-wf?] not-wf
+ibm/not-wf/P10/ibm10n01.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests an attribute with an invalid value. The value of the attribute "first"
contains the character "less than".
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P10/ibm10n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P10/ibm10n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P10/ibm10n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P10/ibm10n05.xml [not-wf?] FAILED:
+ibm/not-wf/P10/ibm10n02.xml [not-wf?] not-wf
+ibm/not-wf/P10/ibm10n03.xml [not-wf?] not-wf
+ibm/not-wf/P10/ibm10n04.xml [not-wf?] not-wf
+ibm/not-wf/P10/ibm10n05.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests an attribute with an invalid value. The value of the attribute "first"
contains the character "less than".
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P10/ibm10n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P10/ibm10n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P10/ibm10n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P11/ibm11n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P11/ibm11n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P11/ibm11n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P11/ibm11n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P12/ibm12n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P12/ibm12n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P12/ibm12n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P13/ibm13n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P13/ibm13n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P13/ibm13n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P14/ibm14n01.xml [not-wf?] FAILED:
+ibm/not-wf/P10/ibm10n06.xml [not-wf?] not-wf
+ibm/not-wf/P10/ibm10n07.xml [not-wf?] not-wf
+ibm/not-wf/P10/ibm10n08.xml [not-wf?] not-wf
+ibm/not-wf/P11/ibm11n01.xml [not-wf?] not-wf
+ibm/not-wf/P11/ibm11n02.xml [not-wf?] not-wf
+ibm/not-wf/P11/ibm11n03.xml [not-wf?] not-wf
+ibm/not-wf/P11/ibm11n04.xml [not-wf?] not-wf
+ibm/not-wf/P12/ibm12n01.xml [not-wf?] not-wf
+ibm/not-wf/P12/ibm12n02.xml [not-wf?] not-wf
+ibm/not-wf/P12/ibm12n03.xml [not-wf?] not-wf
+ibm/not-wf/P13/ibm13n01.xml [not-wf?] not-wf
+ibm/not-wf/P13/ibm13n02.xml [not-wf?] not-wf
+ibm/not-wf/P13/ibm13n03.xml [not-wf?] not-wf
+ibm/not-wf/P14/ibm14n01.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CharData. The content of the element "student" contains the
character "[[>".
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P14/ibm14n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P14/ibm14n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P15/ibm15n01.xml [not-wf?] FAILED:
+ibm/not-wf/P14/ibm14n02.xml [not-wf?] not-wf
+ibm/not-wf/P14/ibm14n03.xml [not-wf?] not-wf
+ibm/not-wf/P15/ibm15n01.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests comment. The text of the second comment contains the character
"-".
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P15/ibm15n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P15/ibm15n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P15/ibm15n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P16/ibm16n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P16/ibm16n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P16/ibm16n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P16/ibm16n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P17/ibm17n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P17/ibm17n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P17/ibm17n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P17/ibm17n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P18/ibm18n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P18/ibm18n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P19/ibm19n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P19/ibm19n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P19/ibm19n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P20/ibm20n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P21/ibm21n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P21/ibm21n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P21/ibm21n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P22/ibm22n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P22/ibm22n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P22/ibm22n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P23/ibm23n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P23/ibm23n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P23/ibm23n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P23/ibm23n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P23/ibm23n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P23/ibm23n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n02.xml [not-wf?] FAILED:
+ibm/not-wf/P15/ibm15n02.xml [not-wf?] not-wf
+ibm/not-wf/P15/ibm15n03.xml [not-wf?] not-wf
+ibm/not-wf/P15/ibm15n04.xml [not-wf?] not-wf
+ibm/not-wf/P16/ibm16n01.xml [not-wf?] not-wf
+ibm/not-wf/P16/ibm16n02.xml [not-wf?] not-wf
+ibm/not-wf/P16/ibm16n03.xml [not-wf?] not-wf
+ibm/not-wf/P16/ibm16n04.xml [not-wf?] not-wf
+ibm/not-wf/P17/ibm17n01.xml [not-wf?] not-wf
+ibm/not-wf/P17/ibm17n02.xml [not-wf?] not-wf
+ibm/not-wf/P17/ibm17n03.xml [not-wf?] not-wf
+ibm/not-wf/P17/ibm17n04.xml [not-wf?] not-wf
+ibm/not-wf/P18/ibm18n01.xml [not-wf?] not-wf
+ibm/not-wf/P18/ibm18n02.xml [not-wf?] not-wf
+ibm/not-wf/P19/ibm19n01.xml [not-wf?] not-wf
+ibm/not-wf/P19/ibm19n02.xml [not-wf?] not-wf
+ibm/not-wf/P19/ibm19n03.xml [not-wf?] not-wf
+ibm/not-wf/P20/ibm20n01.xml [not-wf?] not-wf
+ibm/not-wf/P21/ibm21n01.xml [not-wf?] not-wf
+ibm/not-wf/P21/ibm21n02.xml [not-wf?] not-wf
+ibm/not-wf/P21/ibm21n03.xml [not-wf?] not-wf
+ibm/not-wf/P22/ibm22n01.xml [not-wf?] not-wf
+ibm/not-wf/P22/ibm22n02.xml [not-wf?] not-wf
+ibm/not-wf/P22/ibm22n03.xml [not-wf?] not-wf
+ibm/not-wf/P23/ibm23n01.xml [not-wf?] not-wf
+ibm/not-wf/P23/ibm23n02.xml [not-wf?] not-wf
+ibm/not-wf/P23/ibm23n03.xml [not-wf?] not-wf
+ibm/not-wf/P23/ibm23n04.xml [not-wf?] not-wf
+ibm/not-wf/P23/ibm23n05.xml [not-wf?] not-wf
+ibm/not-wf/P23/ibm23n06.xml [not-wf?] not-wf
+ibm/not-wf/P24/ibm24n01.xml [not-wf?] not-wf
+ibm/not-wf/P24/ibm24n02.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests VersionInfo with a required field missing. The white space is
missing between the key word "xml" and the VersionInfo in the XMLDecl.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P24/ibm24n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P25/ibm25n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P25/ibm25n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P26/ibm26n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P27/ibm27n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P28/ibm28n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P28/ibm28n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P28/ibm28n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P28/ibm28n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P28/ibm28n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P28/ibm28n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P28/ibm28n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P28/ibm28n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/p28a/ibm28an01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P29/ibm29n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P29/ibm29n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P29/ibm29n03.xml [not-wf?] FAILED:
+ibm/not-wf/P24/ibm24n03.xml [not-wf?] not-wf
+ibm/not-wf/P24/ibm24n04.xml [not-wf?] not-wf
+ibm/not-wf/P24/ibm24n05.xml [not-wf?] not-wf
+ibm/not-wf/P24/ibm24n06.xml [not-wf?] not-wf
+ibm/not-wf/P24/ibm24n07.xml [not-wf?] not-wf
+ibm/not-wf/P24/ibm24n08.xml [not-wf?] not-wf
+ibm/not-wf/P24/ibm24n09.xml [not-wf?] not-wf
+ibm/not-wf/P25/ibm25n01.xml [not-wf?] not-wf
+ibm/not-wf/P25/ibm25n02.xml [not-wf?] not-wf
+ibm/not-wf/P26/ibm26n01.xml [not-wf?] not-wf
+ibm/not-wf/P27/ibm27n01.xml [not-wf?] not-wf
+ibm/not-wf/P28/ibm28n01.xml [not-wf?] not-wf
+ibm/not-wf/P28/ibm28n02.xml [not-wf?] not-wf
+ibm/not-wf/P28/ibm28n03.xml [not-wf?] not-wf
+ibm/not-wf/P28/ibm28n04.xml [not-wf?] not-wf
+ibm/not-wf/P28/ibm28n05.xml [not-wf?] not-wf
+ibm/not-wf/P28/ibm28n06.xml [not-wf?] not-wf
+ibm/not-wf/P28/ibm28n07.xml [not-wf?] not-wf
+ibm/not-wf/P28/ibm28n08.xml [not-wf?] not-wf
+ibm/not-wf/p28a/ibm28an01.xml [not-wf?] not-wf
+ibm/not-wf/P29/ibm29n01.xml [not-wf?] not-wf
+ibm/not-wf/P29/ibm29n02.xml [not-wf?] not-wf
+ibm/not-wf/P29/ibm29n03.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
ATTlistDecl in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P29/ibm29n04.xml [not-wf?] FAILED:
+ibm/not-wf/P29/ibm29n04.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
EntityDecl in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P29/ibm29n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P29/ibm29n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P29/ibm29n07.xml [not-wf?] FAILED:
+ibm/not-wf/P29/ibm29n05.xml [not-wf?] not-wf
+ibm/not-wf/P29/ibm29n06.xml [not-wf?] not-wf
+ibm/not-wf/P29/ibm29n07.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests WFC "PEs in Internal Subset". A PE reference occurs inside a
NotationDecl in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P30/ibm30n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P31/ibm31n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P32/ibm32n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P39/ibm39n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P39/ibm39n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P39/ibm39n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P39/ibm39n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P39/ibm39n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P39/ibm39n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P40/ibm40n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P40/ibm40n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P40/ibm40n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P40/ibm40n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P40/ibm40n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P41/ibm41n14.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P42/ibm42n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P42/ibm42n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P42/ibm42n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P42/ibm42n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P42/ibm42n05.xml [not-wf?] FAILED:
+ibm/not-wf/P30/ibm30n01.xml [not-wf?] not-wf
+ibm/not-wf/P31/ibm31n01.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n01.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n02.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n03.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n04.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n05.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n06.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n07.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n08.xml [not-wf?] not-wf
+ibm/not-wf/P32/ibm32n09.xml [not-wf?] not-wf
+ibm/not-wf/P39/ibm39n01.xml [not-wf?] not-wf
+ibm/not-wf/P39/ibm39n02.xml [not-wf?] not-wf
+ibm/not-wf/P39/ibm39n03.xml [not-wf?] not-wf
+ibm/not-wf/P39/ibm39n04.xml [not-wf?] not-wf
+ibm/not-wf/P39/ibm39n05.xml [not-wf?] not-wf
+ibm/not-wf/P39/ibm39n06.xml [not-wf?] not-wf
+ibm/not-wf/P40/ibm40n01.xml [not-wf?] not-wf
+ibm/not-wf/P40/ibm40n02.xml [not-wf?] not-wf
+ibm/not-wf/P40/ibm40n03.xml [not-wf?] not-wf
+ibm/not-wf/P40/ibm40n04.xml [not-wf?] not-wf
+ibm/not-wf/P40/ibm40n05.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n01.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n02.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n03.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n04.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n05.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n06.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n07.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n08.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n09.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n10.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n11.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n12.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n13.xml [not-wf?] not-wf
+ibm/not-wf/P41/ibm41n14.xml [not-wf?] not-wf
+ibm/not-wf/P42/ibm42n01.xml [not-wf?] not-wf
+ibm/not-wf/P42/ibm42n02.xml [not-wf?] not-wf
+ibm/not-wf/P42/ibm42n03.xml [not-wf?] not-wf
+ibm/not-wf/P42/ibm42n04.xml [not-wf?] not-wf
+ibm/not-wf/P42/ibm42n05.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests ETag with a wrong structure. The ETag of the element "root"
contains an Attribute (attr1="any").
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P43/ibm43n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P43/ibm43n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P43/ibm43n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P43/ibm43n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P44/ibm44n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P44/ibm44n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P44/ibm44n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P44/ibm44n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P45/ibm45n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P46/ibm46n01.xml [not-wf?] FAILED:
+ibm/not-wf/P43/ibm43n01.xml [not-wf?] not-wf
+ibm/not-wf/P43/ibm43n02.xml [not-wf?] not-wf
+ibm/not-wf/P43/ibm43n04.xml [not-wf?] not-wf
+ibm/not-wf/P43/ibm43n05.xml [not-wf?] not-wf
+ibm/not-wf/P44/ibm44n01.xml [not-wf?] not-wf
+ibm/not-wf/P44/ibm44n02.xml [not-wf?] not-wf
+ibm/not-wf/P44/ibm44n03.xml [not-wf?] not-wf
+ibm/not-wf/P44/ibm44n04.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n01.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n02.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n03.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n04.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n05.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n06.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n07.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n08.xml [not-wf?] not-wf
+ibm/not-wf/P45/ibm45n09.xml [not-wf?] not-wf
+ibm/not-wf/P46/ibm46n01.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests contentspec with wrong key word. the string "empty" is used as
the key word in the contentspec of the second elementdecl in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P46/ibm46n02.xml [not-wf?] FAILED:
+ibm/not-wf/P46/ibm46n02.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests contentspec with wrong key word. the string "Empty" is used as
the key word in the contentspec of the second elementdecl in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P46/ibm46n03.xml [not-wf?] FAILED:
+ibm/not-wf/P46/ibm46n03.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests contentspec with wrong key word. the string "Any" is used as
the key word in the contentspec of the second elementdecl in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P46/ibm46n04.xml [not-wf?] FAILED:
+ibm/not-wf/P46/ibm46n04.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests contentspec with wrong key word. the string "any" is used as
the key word in the contentspec of the second elementdecl in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P46/ibm46n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P47/ibm47n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P47/ibm47n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P47/ibm47n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P47/ibm47n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P47/ibm47n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P47/ibm47n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P48/ibm48n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P48/ibm48n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P48/ibm48n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P48/ibm48n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P48/ibm48n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P48/ibm48n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P48/ibm48n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P49/ibm49n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P49/ibm49n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P49/ibm49n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P49/ibm49n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P49/ibm49n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P49/ibm49n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P50/ibm50n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P50/ibm50n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P50/ibm50n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P50/ibm50n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P50/ibm50n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P50/ibm50n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P50/ibm50n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P51/ibm51n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P51/ibm51n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P51/ibm51n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P51/ibm51n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P51/ibm51n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P51/ibm51n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P51/ibm51n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P52/ibm52n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P52/ibm52n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P52/ibm52n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P52/ibm52n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P52/ibm52n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P52/ibm52n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P53/ibm53n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P53/ibm53n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P53/ibm53n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P53/ibm53n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P53/ibm53n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P53/ibm53n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P53/ibm53n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P53/ibm53n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P54/ibm54n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P54/ibm54n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P55/ibm55n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P55/ibm55n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P55/ibm55n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P56/ibm56n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P56/ibm56n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P56/ibm56n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P56/ibm56n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P56/ibm56n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P56/ibm56n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P56/ibm56n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P57/ibm57n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P58/ibm58n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P58/ibm58n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P58/ibm58n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P58/ibm58n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P58/ibm58n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P58/ibm58n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P58/ibm58n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P58/ibm58n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P59/ibm59n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P59/ibm59n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P59/ibm59n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P59/ibm59n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P59/ibm59n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P59/ibm59n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P60/ibm60n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P60/ibm60n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P60/ibm60n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P60/ibm60n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P60/ibm60n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P60/ibm60n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P60/ibm60n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P60/ibm60n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P61/ibm61n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P62/ibm62n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P62/ibm62n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P62/ibm62n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P62/ibm62n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P62/ibm62n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P62/ibm62n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P62/ibm62n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P62/ibm62n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P63/ibm63n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P63/ibm63n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P63/ibm63n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P63/ibm63n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P63/ibm63n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P63/ibm63n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P63/ibm63n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P64/ibm64n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P64/ibm64n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P64/ibm64n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P65/ibm65n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P65/ibm65n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n14.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P66/ibm66n15.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P68/ibm68n10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P69/ibm69n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P69/ibm69n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P69/ibm69n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P69/ibm69n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P69/ibm69n06.xml [not-wf?] FAILED:
+ibm/not-wf/P46/ibm46n05.xml [not-wf?] not-wf
+ibm/not-wf/P47/ibm47n01.xml [not-wf?] not-wf
+ibm/not-wf/P47/ibm47n02.xml [not-wf?] not-wf
+ibm/not-wf/P47/ibm47n03.xml [not-wf?] not-wf
+ibm/not-wf/P47/ibm47n04.xml [not-wf?] not-wf
+ibm/not-wf/P47/ibm47n05.xml [not-wf?] not-wf
+ibm/not-wf/P47/ibm47n06.xml [not-wf?] not-wf
+ibm/not-wf/P48/ibm48n01.xml [not-wf?] not-wf
+ibm/not-wf/P48/ibm48n02.xml [not-wf?] not-wf
+ibm/not-wf/P48/ibm48n03.xml [not-wf?] not-wf
+ibm/not-wf/P48/ibm48n04.xml [not-wf?] not-wf
+ibm/not-wf/P48/ibm48n05.xml [not-wf?] not-wf
+ibm/not-wf/P48/ibm48n06.xml [not-wf?] not-wf
+ibm/not-wf/P48/ibm48n07.xml [not-wf?] not-wf
+ibm/not-wf/P49/ibm49n01.xml [not-wf?] not-wf
+ibm/not-wf/P49/ibm49n02.xml [not-wf?] not-wf
+ibm/not-wf/P49/ibm49n03.xml [not-wf?] not-wf
+ibm/not-wf/P49/ibm49n04.xml [not-wf?] not-wf
+ibm/not-wf/P49/ibm49n05.xml [not-wf?] not-wf
+ibm/not-wf/P49/ibm49n06.xml [not-wf?] not-wf
+ibm/not-wf/P50/ibm50n01.xml [not-wf?] not-wf
+ibm/not-wf/P50/ibm50n02.xml [not-wf?] not-wf
+ibm/not-wf/P50/ibm50n03.xml [not-wf?] not-wf
+ibm/not-wf/P50/ibm50n04.xml [not-wf?] not-wf
+ibm/not-wf/P50/ibm50n05.xml [not-wf?] not-wf
+ibm/not-wf/P50/ibm50n06.xml [not-wf?] not-wf
+ibm/not-wf/P50/ibm50n07.xml [not-wf?] not-wf
+ibm/not-wf/P51/ibm51n01.xml [not-wf?] not-wf
+ibm/not-wf/P51/ibm51n02.xml [not-wf?] not-wf
+ibm/not-wf/P51/ibm51n03.xml [not-wf?] not-wf
+ibm/not-wf/P51/ibm51n04.xml [not-wf?] not-wf
+ibm/not-wf/P51/ibm51n05.xml [not-wf?] not-wf
+ibm/not-wf/P51/ibm51n06.xml [not-wf?] not-wf
+ibm/not-wf/P51/ibm51n07.xml [not-wf?] not-wf
+ibm/not-wf/P52/ibm52n01.xml [not-wf?] not-wf
+ibm/not-wf/P52/ibm52n02.xml [not-wf?] not-wf
+ibm/not-wf/P52/ibm52n03.xml [not-wf?] not-wf
+ibm/not-wf/P52/ibm52n04.xml [not-wf?] not-wf
+ibm/not-wf/P52/ibm52n05.xml [not-wf?] not-wf
+ibm/not-wf/P52/ibm52n06.xml [not-wf?] not-wf
+ibm/not-wf/P53/ibm53n01.xml [not-wf?] not-wf
+ibm/not-wf/P53/ibm53n02.xml [not-wf?] not-wf
+ibm/not-wf/P53/ibm53n03.xml [not-wf?] not-wf
+ibm/not-wf/P53/ibm53n04.xml [not-wf?] not-wf
+ibm/not-wf/P53/ibm53n05.xml [not-wf?] not-wf
+ibm/not-wf/P53/ibm53n06.xml [not-wf?] not-wf
+ibm/not-wf/P53/ibm53n07.xml [not-wf?] not-wf
+ibm/not-wf/P53/ibm53n08.xml [not-wf?] not-wf
+ibm/not-wf/P54/ibm54n01.xml [not-wf?] not-wf
+ibm/not-wf/P54/ibm54n02.xml [not-wf?] not-wf
+ibm/not-wf/P55/ibm55n01.xml [not-wf?] not-wf
+ibm/not-wf/P55/ibm55n02.xml [not-wf?] not-wf
+ibm/not-wf/P55/ibm55n03.xml [not-wf?] not-wf
+ibm/not-wf/P56/ibm56n01.xml [not-wf?] not-wf
+ibm/not-wf/P56/ibm56n02.xml [not-wf?] not-wf
+ibm/not-wf/P56/ibm56n03.xml [not-wf?] not-wf
+ibm/not-wf/P56/ibm56n04.xml [not-wf?] not-wf
+ibm/not-wf/P56/ibm56n05.xml [not-wf?] not-wf
+ibm/not-wf/P56/ibm56n06.xml [not-wf?] not-wf
+ibm/not-wf/P56/ibm56n07.xml [not-wf?] not-wf
+ibm/not-wf/P57/ibm57n01.xml [not-wf?] not-wf
+ibm/not-wf/P58/ibm58n01.xml [not-wf?] not-wf
+ibm/not-wf/P58/ibm58n02.xml [not-wf?] not-wf
+ibm/not-wf/P58/ibm58n03.xml [not-wf?] not-wf
+ibm/not-wf/P58/ibm58n04.xml [not-wf?] not-wf
+ibm/not-wf/P58/ibm58n05.xml [not-wf?] not-wf
+ibm/not-wf/P58/ibm58n06.xml [not-wf?] not-wf
+ibm/not-wf/P58/ibm58n07.xml [not-wf?] not-wf
+ibm/not-wf/P58/ibm58n08.xml [not-wf?] not-wf
+ibm/not-wf/P59/ibm59n01.xml [not-wf?] not-wf
+ibm/not-wf/P59/ibm59n02.xml [not-wf?] not-wf
+ibm/not-wf/P59/ibm59n03.xml [not-wf?] not-wf
+ibm/not-wf/P59/ibm59n04.xml [not-wf?] not-wf
+ibm/not-wf/P59/ibm59n05.xml [not-wf?] not-wf
+ibm/not-wf/P59/ibm59n06.xml [not-wf?] not-wf
+ibm/not-wf/P60/ibm60n01.xml [not-wf?] not-wf
+ibm/not-wf/P60/ibm60n02.xml [not-wf?] not-wf
+ibm/not-wf/P60/ibm60n03.xml [not-wf?] not-wf
+ibm/not-wf/P60/ibm60n04.xml [not-wf?] not-wf
+ibm/not-wf/P60/ibm60n05.xml [not-wf?] not-wf
+ibm/not-wf/P60/ibm60n06.xml [not-wf?] not-wf
+ibm/not-wf/P60/ibm60n07.xml [not-wf?] not-wf
+ibm/not-wf/P60/ibm60n08.xml [not-wf?] not-wf
+ibm/not-wf/P61/ibm61n01.xml [not-wf?] not-wf
+ibm/not-wf/P62/ibm62n01.xml [not-wf?] not-wf
+ibm/not-wf/P62/ibm62n02.xml [not-wf?] not-wf
+ibm/not-wf/P62/ibm62n03.xml [not-wf?] not-wf
+ibm/not-wf/P62/ibm62n04.xml [not-wf?] not-wf
+ibm/not-wf/P62/ibm62n05.xml [not-wf?] not-wf
+ibm/not-wf/P62/ibm62n06.xml [not-wf?] not-wf
+ibm/not-wf/P62/ibm62n07.xml [not-wf?] not-wf
+ibm/not-wf/P62/ibm62n08.xml [not-wf?] not-wf
+ibm/not-wf/P63/ibm63n01.xml [not-wf?] not-wf
+ibm/not-wf/P63/ibm63n02.xml [not-wf?] not-wf
+ibm/not-wf/P63/ibm63n03.xml [not-wf?] not-wf
+ibm/not-wf/P63/ibm63n04.xml [not-wf?] not-wf
+ibm/not-wf/P63/ibm63n05.xml [not-wf?] not-wf
+ibm/not-wf/P63/ibm63n06.xml [not-wf?] not-wf
+ibm/not-wf/P63/ibm63n07.xml [not-wf?] not-wf
+ibm/not-wf/P64/ibm64n01.xml [not-wf?] not-wf
+ibm/not-wf/P64/ibm64n02.xml [not-wf?] not-wf
+ibm/not-wf/P64/ibm64n03.xml [not-wf?] not-wf
+ibm/not-wf/P65/ibm65n01.xml [not-wf?] not-wf
+ibm/not-wf/P65/ibm65n02.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n01.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n02.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n03.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n04.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n05.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n06.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n07.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n08.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n09.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n10.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n11.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n12.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n13.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n14.xml [not-wf?] not-wf
+ibm/not-wf/P66/ibm66n15.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n01.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n02.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n03.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n04.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n05.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n06.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n07.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n08.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n09.xml [not-wf?] not-wf
+ibm/not-wf/P68/ibm68n10.xml [not-wf?] not-wf
+ibm/not-wf/P69/ibm69n01.xml [not-wf?] not-wf
+ibm/not-wf/P69/ibm69n02.xml [not-wf?] not-wf
+ibm/not-wf/P69/ibm69n03.xml [not-wf?] not-wf
+ibm/not-wf/P69/ibm69n04.xml [not-wf?] not-wf
+ibm/not-wf/P69/ibm69n06.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests PEReference which is against P69 WFC: No Recursion. The
recursive PE reference occurs with the entity declarations for "paaa" and
"bbb" in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P69/ibm69n07.xml [not-wf?] FAILED:
+ibm/not-wf/P69/ibm69n07.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests PEReference which is against P69 WFC: No Recursion. The
indirect recursive PE reference occurs with the entity declarations for
"paaa", "bbb", "ccc", "ddd", and "eee" in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm70n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm71n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm71n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm71n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm71n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm71n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm71n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm71n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P71/ibm71n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P72/ibm72n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P73/ibm73n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P73/ibm73n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P74/ibm74n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P75/ibm75n13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P76/ibm76n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P76/ibm76n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P76/ibm76n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P76/ibm76n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P76/ibm76n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P76/ibm76n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P76/ibm76n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P77/ibm77n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P77/ibm77n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P77/ibm77n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P77/ibm77n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P78/ibm78n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P78/ibm78n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P79/ibm79n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P79/ibm79n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P80/ibm80n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P80/ibm80n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P80/ibm80n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P80/ibm80n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P80/ibm80n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P80/ibm80n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n04.xml [not-wf?] FAILED:
+ibm/not-wf/P71/ibm70n01.xml [not-wf?] not-wf
+ibm/not-wf/P71/ibm71n01.xml [not-wf?] not-wf
+ibm/not-wf/P71/ibm71n02.xml [not-wf?] not-wf
+ibm/not-wf/P71/ibm71n03.xml [not-wf?] not-wf
+ibm/not-wf/P71/ibm71n04.xml [not-wf?] not-wf
+ibm/not-wf/P71/ibm71n05.xml [not-wf?] not-wf
+ibm/not-wf/P71/ibm71n06.xml [not-wf?] not-wf
+ibm/not-wf/P71/ibm71n07.xml [not-wf?] not-wf
+ibm/not-wf/P71/ibm71n08.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n01.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n02.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n03.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n04.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n05.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n06.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n07.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n08.xml [not-wf?] not-wf
+ibm/not-wf/P72/ibm72n09.xml [not-wf?] not-wf
+ibm/not-wf/P73/ibm73n01.xml [not-wf?] not-wf
+ibm/not-wf/P73/ibm73n03.xml [not-wf?] not-wf
+ibm/not-wf/P74/ibm74n01.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n01.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n02.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n03.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n04.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n05.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n06.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n07.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n08.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n09.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n10.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n11.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n12.xml [not-wf?] not-wf
+ibm/not-wf/P75/ibm75n13.xml [not-wf?] not-wf
+ibm/not-wf/P76/ibm76n01.xml [not-wf?] not-wf
+ibm/not-wf/P76/ibm76n02.xml [not-wf?] not-wf
+ibm/not-wf/P76/ibm76n03.xml [not-wf?] not-wf
+ibm/not-wf/P76/ibm76n04.xml [not-wf?] not-wf
+ibm/not-wf/P76/ibm76n05.xml [not-wf?] not-wf
+ibm/not-wf/P76/ibm76n06.xml [not-wf?] not-wf
+ibm/not-wf/P76/ibm76n07.xml [not-wf?] not-wf
+ibm/not-wf/P77/ibm77n01.xml [not-wf?] not-wf
+ibm/not-wf/P77/ibm77n02.xml [not-wf?] not-wf
+ibm/not-wf/P77/ibm77n03.xml [not-wf?] not-wf
+ibm/not-wf/P77/ibm77n04.xml [not-wf?] not-wf
+ibm/not-wf/P78/ibm78n01.xml [not-wf?] not-wf
+ibm/not-wf/P78/ibm78n02.xml [not-wf?] not-wf
+ibm/not-wf/P79/ibm79n01.xml [not-wf?] not-wf
+ibm/not-wf/P79/ibm79n02.xml [not-wf?] not-wf
+ibm/not-wf/P80/ibm80n01.xml [not-wf?] not-wf
+ibm/not-wf/P80/ibm80n02.xml [not-wf?] not-wf
+ibm/not-wf/P80/ibm80n03.xml [not-wf?] not-wf
+ibm/not-wf/P80/ibm80n04.xml [not-wf?] not-wf
+ibm/not-wf/P80/ibm80n05.xml [not-wf?] not-wf
+ibm/not-wf/P80/ibm80n06.xml [not-wf?] not-wf
+ibm/not-wf/P81/ibm81n01.xml [not-wf?] not-wf
+ibm/not-wf/P81/ibm81n02.xml [not-wf?] not-wf
+ibm/not-wf/P81/ibm81n03.xml [not-wf?] not-wf
+ibm/not-wf/P81/ibm81n04.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests EncName with illegal characters. The "8-" is used as the
initial characters in the EncName in the EncodingDecl in the XMLDecl.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P81/ibm81n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P82/ibm82n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P82/ibm82n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P82/ibm82n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P82/ibm82n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P82/ibm82n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P82/ibm82n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P82/ibm82n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P82/ibm82n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P83/ibm83n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P83/ibm83n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P83/ibm83n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P83/ibm83n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P83/ibm83n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P83/ibm83n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n05.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n100.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n101.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n102.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n103.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n104.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n105.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n106.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n107.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n108.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n109.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n110.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n111.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n112.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n113.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n114.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n115.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n116.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n117.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n118.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n119.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n120.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n121.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n122.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n123.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n124.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n125.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n126.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n127.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n128.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n129.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n13.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n130.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n131.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n132.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n133.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n134.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n135.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n136.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n137.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n138.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n139.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n14.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n140.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n141.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n142.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n143.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n144.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n145.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n146.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n147.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n148.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n149.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n15.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n150.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n151.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n152.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n153.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n154.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n155.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n156.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n157.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n158.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n159.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n16.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n160.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n161.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n162.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n163.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n164.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n165.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n166.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n167.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n168.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n169.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n17.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n170.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n171.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n172.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n173.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n174.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n175.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n176.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n177.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n178.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n179.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n18.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n180.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n181.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n182.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n183.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n184.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n185.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n186.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n187.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n188.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n189.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n19.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n190.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n191.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n192.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n193.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n194.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n195.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n196.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n197.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n198.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n20.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n21.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n22.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n23.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n24.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n25.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n26.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n27.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n28.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n29.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n30.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n31.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n32.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n33.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n34.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n35.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n36.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n37.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n38.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n39.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n40.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n41.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n42.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n43.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n44.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n45.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n46.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n47.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n48.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n49.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n50.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n51.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n52.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n53.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n54.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n55.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n56.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n57.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n58.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n59.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n60.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n61.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n62.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n63.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n64.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n65.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n66.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n67.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n68.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n69.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n70.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n71.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n72.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n73.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n74.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n75.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n76.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n77.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n78.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n79.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n80.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n81.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n82.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n83.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n84.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n85.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n86.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n87.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n88.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n89.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n90.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n91.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n92.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n93.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n94.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n95.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n96.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n97.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n98.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P85/ibm85n99.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P86/ibm86n01.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P86/ibm86n02.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P86/ibm86n03.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P86/ibm86n04.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n01.xml [not-wf?] FAILED:
+ibm/not-wf/P81/ibm81n05.xml [not-wf?] not-wf
+ibm/not-wf/P81/ibm81n06.xml [not-wf?] not-wf
+ibm/not-wf/P81/ibm81n07.xml [not-wf?] not-wf
+ibm/not-wf/P81/ibm81n08.xml [not-wf?] not-wf
+ibm/not-wf/P81/ibm81n09.xml [not-wf?] not-wf
+ibm/not-wf/P82/ibm82n01.xml [not-wf?] not-wf
+ibm/not-wf/P82/ibm82n02.xml [not-wf?] not-wf
+ibm/not-wf/P82/ibm82n03.xml [not-wf?] not-wf
+ibm/not-wf/P82/ibm82n04.xml [not-wf?] not-wf
+ibm/not-wf/P82/ibm82n05.xml [not-wf?] not-wf
+ibm/not-wf/P82/ibm82n06.xml [not-wf?] not-wf
+ibm/not-wf/P82/ibm82n07.xml [not-wf?] not-wf
+ibm/not-wf/P82/ibm82n08.xml [not-wf?] not-wf
+ibm/not-wf/P83/ibm83n01.xml [not-wf?] not-wf
+ibm/not-wf/P83/ibm83n02.xml [not-wf?] not-wf
+ibm/not-wf/P83/ibm83n03.xml [not-wf?] not-wf
+ibm/not-wf/P83/ibm83n04.xml [not-wf?] not-wf
+ibm/not-wf/P83/ibm83n05.xml [not-wf?] not-wf
+ibm/not-wf/P83/ibm83n06.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n01.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n02.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n03.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n04.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n05.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n06.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n07.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n08.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n09.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n10.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n100.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n101.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n102.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n103.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n104.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n105.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n106.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n107.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n108.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n109.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n11.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n110.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n111.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n112.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n113.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n114.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n115.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n116.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n117.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n118.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n119.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n12.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n120.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n121.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n122.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n123.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n124.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n125.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n126.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n127.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n128.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n129.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n13.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n130.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n131.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n132.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n133.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n134.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n135.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n136.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n137.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n138.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n139.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n14.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n140.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n141.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n142.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n143.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n144.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n145.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n146.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n147.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n148.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n149.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n15.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n150.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n151.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n152.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n153.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n154.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n155.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n156.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n157.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n158.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n159.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n16.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n160.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n161.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n162.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n163.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n164.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n165.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n166.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n167.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n168.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n169.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n17.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n170.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n171.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n172.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n173.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n174.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n175.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n176.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n177.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n178.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n179.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n18.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n180.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n181.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n182.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n183.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n184.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n185.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n186.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n187.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n188.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n189.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n19.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n190.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n191.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n192.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n193.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n194.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n195.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n196.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n197.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n198.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n20.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n21.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n22.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n23.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n24.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n25.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n26.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n27.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n28.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n29.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n30.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n31.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n32.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n33.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n34.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n35.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n36.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n37.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n38.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n39.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n40.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n41.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n42.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n43.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n44.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n45.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n46.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n47.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n48.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n49.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n50.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n51.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n52.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n53.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n54.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n55.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n56.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n57.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n58.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n59.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n60.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n61.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n62.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n63.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n64.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n65.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n66.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n67.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n68.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n69.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n70.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n71.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n72.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n73.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n74.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n75.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n76.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n77.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n78.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n79.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n80.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n81.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n82.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n83.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n84.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n85.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n86.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n87.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n88.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n89.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n90.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n91.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n92.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n93.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n94.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n95.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n96.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n97.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n98.xml [not-wf?] not-wf
+ibm/not-wf/P85/ibm85n99.xml [not-wf?] not-wf
+ibm/not-wf/P86/ibm86n01.xml [not-wf?] not-wf
+ibm/not-wf/P86/ibm86n02.xml [not-wf?] not-wf
+ibm/not-wf/P86/ibm86n03.xml [not-wf?] not-wf
+ibm/not-wf/P86/ibm86n04.xml [not-wf?] not-wf
+ibm/not-wf/P87/ibm87n01.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x02FF
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n02.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n02.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0346
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n03.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n03.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0362
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n04.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n04.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0487
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n05.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n05.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x05A2
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n06.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n06.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x05BA
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n07.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n07.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x05BE
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n08.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n08.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x05C0
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n09.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n09.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x05C3
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n10.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n10.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0653
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n11.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n11.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x06B8
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n12.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n12.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x06B9
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n13.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n13.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x06E9
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n14.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n14.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x06EE
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n15.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n15.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0904
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n16.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n16.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x093B
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n17.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n17.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x094E
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n18.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n18.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0955
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n19.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n19.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0964
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n20.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n20.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0984
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n21.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n21.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x09C5
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n22.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n22.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x09C9
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n23.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n23.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x09CE
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n24.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n24.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x09D8
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n25.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n25.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x09E4
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n26.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n26.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0A03
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n27.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n27.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0A3D
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n28.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n28.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0A46
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n29.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n29.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0A49
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n30.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n30.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0A4E
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n31.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n31.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0A80
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n32.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n32.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0A84
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n33.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n33.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0ABB
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n34.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n34.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0AC6
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n35.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n35.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0ACA
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n36.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n36.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0ACE
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n37.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n37.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0B04
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n38.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n38.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0B3B
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n39.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n39.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0B44
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n40.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n40.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0B4A
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n41.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n41.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0B4E
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n42.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n42.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0B58
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n43.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n43.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0B84
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n44.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n44.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0BC3
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n45.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n45.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0BC9
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n46.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n46.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0BD6
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n47.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n47.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0C0D
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n48.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n48.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0C45
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n49.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n49.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0C49
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n50.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n50.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0C54
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n51.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n51.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0C81
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n52.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n52.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0C84
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n53.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n53.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0CC5
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n54.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n54.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0CC9
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n55.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n55.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0CD4
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n56.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n56.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0CD7
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n57.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n57.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0D04
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n58.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n58.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0D45
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n59.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n59.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0D49
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n60.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n60.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0D4E
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n61.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n61.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0D58
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n62.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n62.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0E3F
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n63.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n63.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0E3B
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n64.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n64.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0E4F
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n66.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n66.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0EBA
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n67.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n67.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0EBE
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n68.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n68.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0ECE
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n69.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n69.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F1A
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n70.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n70.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F36
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n71.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n71.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F38
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n72.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n72.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F3B
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n73.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n73.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F3A
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n74.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n74.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F70
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n75.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n75.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F85
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n76.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n76.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F8C
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n77.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n77.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F96
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n78.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n78.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0F98
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n79.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n79.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0FB0
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n80.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n80.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0FB8
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n81.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n81.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x0FBA
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n82.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n82.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x20DD
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n83.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n83.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x20E2
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n84.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n84.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x3030
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P87/ibm87n85.xml [not-wf?] FAILED:
+ibm/not-wf/P87/ibm87n85.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests CombiningChar with an illegal character. The character #x309B
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n01.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n01.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0029
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n02.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n02.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x003B
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n03.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n03.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x066A
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n04.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n04.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x06FA
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n05.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n05.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0970
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n06.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n06.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x09F2
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n08.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n08.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0AF0
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n09.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n09.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0B70
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n10.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n10.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0C65
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n11.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n11.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0CE5
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n12.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n12.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0CF0
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n13.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n13.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0D70
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n14.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n14.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0E5A
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n15.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n15.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0EDA
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P88/ibm88n16.xml [not-wf?] FAILED:
+ibm/not-wf/P88/ibm88n16.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Digit with an illegal character. The character #x0F2A
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n01.xml [not-wf?] FAILED:
+ibm/not-wf/P89/ibm89n01.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Extender with an illegal character. The character #x00B6
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n02.xml [not-wf?] FAILED:
+ibm/not-wf/P89/ibm89n02.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Extender with an illegal character. The character #x00B8
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n03.xml [not-wf?] FAILED:
+ibm/not-wf/P89/ibm89n03.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Extender with an illegal character. The character #x02D2
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n04.xml [not-wf?] FAILED:
+ibm/not-wf/P89/ibm89n04.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Extender with an illegal character. The character #x03FE
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n05.xml [not-wf?] FAILED:
+ibm/not-wf/P89/ibm89n05.xml [not-wf?] FAILED:
well-formedness violation not detected
[
Tests Extender with an illegal character. The character #x065F
occurs as the second character in the PITarget in the PI in the DTD.
]
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n06.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n07.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n08.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n09.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n10.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n11.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/not-wf/P89/ibm89n12.xml [not-wf?] not-wf
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P01/ibm01v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P02/ibm02v01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P03/ibm03v01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P09/ibm09v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P09/ibm09v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P09/ibm09v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P09/ibm09v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P09/ibm09v05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P10/ibm10v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P10/ibm10v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P10/ibm10v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P10/ibm10v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P10/ibm10v05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P10/ibm10v06.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P10/ibm10v07.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P10/ibm10v08.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P11/ibm11v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P11/ibm11v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P11/ibm11v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P11/ibm11v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P12/ibm12v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P12/ibm12v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P12/ibm12v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P12/ibm12v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P13/ibm13v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P14/ibm14v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P14/ibm14v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P14/ibm14v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P15/ibm15v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P15/ibm15v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P15/ibm15v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P15/ibm15v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P16/ibm16v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P16/ibm16v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P16/ibm16v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P17/ibm17v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P18/ibm18v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P19/ibm19v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P20/ibm20v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P20/ibm20v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P21/ibm21v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P22/ibm22v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P22/ibm22v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P22/ibm22v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P22/ibm22v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P22/ibm22v05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P22/ibm22v06.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P22/ibm22v07.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P23/ibm23v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P23/ibm23v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P23/ibm23v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P23/ibm23v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P23/ibm23v05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P23/ibm23v06.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P24/ibm24v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P24/ibm24v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P25/ibm25v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P25/ibm25v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P25/ibm25v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P25/ibm25v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P26/ibm26v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P27/ibm27v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P27/ibm27v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P27/ibm27v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P28/ibm28v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P30/ibm30v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P30/ibm30v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P31/ibm31v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P32/ibm32v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P32/ibm32v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P32/ibm32v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P32/ibm32v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P33/ibm33v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P34/ibm34v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P35/ibm35v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P36/ibm36v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P37/ibm37v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P38/ibm38v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P39/ibm39v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P40/ibm40v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P41/ibm41v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P42/ibm42v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P43/ibm43v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P44/ibm44v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P45/ibm45v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P47/ibm47v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P49/ibm49v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P50/ibm50v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P51/ibm51v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P51/ibm51v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P52/ibm52v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P54/ibm54v01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P54/ibm54v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P54/ibm54v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P55/ibm55v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v06.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v07.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v08.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v09.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P56/ibm56v10.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P57/ibm57v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P58/ibm58v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P58/ibm58v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P59/ibm59v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P59/ibm59v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P60/ibm60v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P60/ibm60v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P60/ibm60v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P60/ibm60v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P61/ibm61v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P61/ibm61v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P62/ibm62v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P62/ibm62v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P62/ibm62v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P62/ibm62v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P62/ibm62v05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P63/ibm63v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P63/ibm63v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P63/ibm63v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P63/ibm63v04.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P63/ibm63v05.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P64/ibm64v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P64/ibm64v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P64/ibm64v03.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P65/ibm65v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P65/ibm65v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P66/ibm66v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P67/ibm67v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P68/ibm68v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P68/ibm68v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P69/ibm69v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P69/ibm69v02.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P70/ibm70v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P78/ibm78v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P79/ibm79v01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P82/ibm82v01.xml [not validating:] input/output [validating:] input/output
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P85/ibm85v01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P86/ibm86v01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P87/ibm87v01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P88/ibm88v01.xml [not validating:] input [validating:] input
-/home/david/2001/XML-Test-Suite/xmlconf/ibm/valid/P89/ibm89v01.xml [not validating:] input [validating:] input
+ibm/not-wf/P89/ibm89n06.xml [not-wf?] not-wf
+ibm/not-wf/P89/ibm89n07.xml [not-wf?] not-wf
+ibm/not-wf/P89/ibm89n08.xml [not-wf?] not-wf
+ibm/not-wf/P89/ibm89n09.xml [not-wf?] not-wf
+ibm/not-wf/P89/ibm89n10.xml [not-wf?] not-wf
+ibm/not-wf/P89/ibm89n11.xml [not-wf?] not-wf
+ibm/not-wf/P89/ibm89n12.xml [not-wf?] not-wf
+ibm/valid/P01/ibm01v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P02/ibm02v01.xml [not validating:] input [validating:] input
+ibm/valid/P03/ibm03v01.xml [not validating:] input [validating:] input
+ibm/valid/P09/ibm09v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P09/ibm09v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P09/ibm09v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P09/ibm09v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P09/ibm09v05.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P10/ibm10v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P10/ibm10v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P10/ibm10v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P10/ibm10v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P10/ibm10v05.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P10/ibm10v06.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P10/ibm10v07.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P10/ibm10v08.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P11/ibm11v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P11/ibm11v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P11/ibm11v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P11/ibm11v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P12/ibm12v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P12/ibm12v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P12/ibm12v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P12/ibm12v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P13/ibm13v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P14/ibm14v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P14/ibm14v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P14/ibm14v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P15/ibm15v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P15/ibm15v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P15/ibm15v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P15/ibm15v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P16/ibm16v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P16/ibm16v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P16/ibm16v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P17/ibm17v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P18/ibm18v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P19/ibm19v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P20/ibm20v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P20/ibm20v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P21/ibm21v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P22/ibm22v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P22/ibm22v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P22/ibm22v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P22/ibm22v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P22/ibm22v05.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P22/ibm22v06.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P22/ibm22v07.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P23/ibm23v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P23/ibm23v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P23/ibm23v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P23/ibm23v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P23/ibm23v05.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P23/ibm23v06.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P24/ibm24v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P24/ibm24v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P25/ibm25v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P25/ibm25v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P25/ibm25v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P25/ibm25v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P26/ibm26v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P27/ibm27v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P27/ibm27v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P27/ibm27v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P28/ibm28v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P30/ibm30v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P30/ibm30v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P31/ibm31v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P32/ibm32v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P32/ibm32v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P32/ibm32v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P32/ibm32v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P33/ibm33v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P34/ibm34v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P35/ibm35v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P36/ibm36v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P37/ibm37v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P38/ibm38v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P39/ibm39v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P40/ibm40v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P41/ibm41v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P42/ibm42v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P43/ibm43v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P44/ibm44v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P45/ibm45v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P47/ibm47v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P49/ibm49v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P50/ibm50v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P51/ibm51v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P51/ibm51v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P52/ibm52v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P54/ibm54v01.xml [not validating:] input [validating:] input
+ibm/valid/P54/ibm54v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P54/ibm54v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P55/ibm55v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v05.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v06.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v07.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v08.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v09.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P56/ibm56v10.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P57/ibm57v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P58/ibm58v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P58/ibm58v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P59/ibm59v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P59/ibm59v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P60/ibm60v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P60/ibm60v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P60/ibm60v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P60/ibm60v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P61/ibm61v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P61/ibm61v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P62/ibm62v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P62/ibm62v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P62/ibm62v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P62/ibm62v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P62/ibm62v05.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P63/ibm63v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P63/ibm63v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P63/ibm63v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P63/ibm63v04.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P63/ibm63v05.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P64/ibm64v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P64/ibm64v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P64/ibm64v03.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P65/ibm65v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P65/ibm65v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P66/ibm66v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P67/ibm67v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P68/ibm68v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P68/ibm68v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P69/ibm69v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P69/ibm69v02.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P70/ibm70v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P78/ibm78v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P79/ibm79v01.xml [not validating:] input [validating:] input
+ibm/valid/P82/ibm82v01.xml [not validating:] input/output [validating:] input/output
+ibm/valid/P85/ibm85v01.xml [not validating:] input [validating:] input
+ibm/valid/P86/ibm86v01.xml [not validating:] input [validating:] input
+ibm/valid/P87/ibm87v01.xml [not validating:] input [validating:] input
+ibm/valid/P88/ibm88v01.xml [not validating:] input [validating:] input
+ibm/valid/P89/ibm89v01.xml [not validating:] input [validating:] input
129/1786 tests failed; 376 tests were skipped
1
0

26 Nov '05
Update of /project/cxml/cvsroot/cxml
In directory common-lisp.net:/tmp/cvs-serv18680
Added Files:
XMLCONF DOMTEST
Log Message:
run not-wf tests
Date: Sat Nov 26 23:55:22 2005
Author: dlichteblau
1
0

[cxml-cvs] CVS update: cxml/test/domtest.lisp cxml/test/xmlconf.lisp
by dlichteblau@common-lisp.net 26 Nov '05
by dlichteblau@common-lisp.net 26 Nov '05
26 Nov '05
Update of /project/cxml/cvsroot/cxml/test
In directory common-lisp.net:/tmp/cvs-serv18680/test
Modified Files:
domtest.lisp xmlconf.lisp
Log Message:
run not-wf tests
Date: Sat Nov 26 23:55:23 2005
Author: dlichteblau
Index: cxml/test/domtest.lisp
diff -u cxml/test/domtest.lisp:1.3 cxml/test/domtest.lisp:1.4
--- cxml/test/domtest.lisp:1.3 Sat Jun 25 15:56:57 2005
+++ cxml/test/domtest.lisp Sat Nov 26 23:55:23 2005
@@ -618,6 +618,14 @@
"hc_nodereplacechildnewchildexists.xml"
"characterdatadeletedatanomodificationallowederr.xml"))
+(defun dribble-tests (directory)
+ (let ((base (slot-value (asdf:find-system :cxml) 'asdf::relative-pathname)))
+ (with-open-file (*standard-output*
+ (merge-pathnames "DOMTEST" base)
+ :direction :output
+ :if-exists :supersede)
+ (run-all-tests directory))))
+
(defun run-all-tests (*directory* &optional verbose)
(let* ((cxml::*redefinition-warning* nil)
(test-directory (merge-pathnames "tests/level1/core/" *directory*))
Index: cxml/test/xmlconf.lisp
diff -u cxml/test/xmlconf.lisp:1.2 cxml/test/xmlconf.lisp:1.3
--- cxml/test/xmlconf.lisp:1.2 Wed Apr 20 21:58:03 2005
+++ cxml/test/xmlconf.lisp Sat Nov 26 23:55:23 2005
@@ -36,6 +36,7 @@
nil)
((equal (get-attribute test "TYPE") "valid") :valid)
((equal (get-attribute test "TYPE") "invalid") :invalid)
+ ((equal (get-attribute test "TYPE") "not-wf") :not-wf)
(t nil)))
(defun test-pathnames (directory test)
@@ -63,6 +64,14 @@
(read-sequence result s )
result)))
+(defun dribble-tests (directory)
+ (let ((base (slot-value (asdf:find-system :cxml) 'asdf::relative-pathname)))
+ (with-open-file (*standard-output*
+ (merge-pathnames "XMLCONF" base)
+ :direction :output
+ :if-exists :supersede)
+ (run-all-tests directory))))
+
(defun run-all-tests (directory)
(let* ((pathname (merge-pathnames "xmlconf.xml" directory))
(builder (dom:make-dom-builder))
@@ -75,7 +84,14 @@
(puri:*strict-parse* nil))
(dom:do-node-list (test (dom:get-elements-by-tag-name xmlconf "TEST"))
(let ((description
- (rod-string (dom:data (dom:item (dom:child-nodes test) 0))))
+ (apply #'concatenate
+ 'string
+ (map 'list
+ (lambda (child)
+ (if (dom:text-node-p child)
+ (rod-string (dom:data child))
+ ""))
+ (dom:child-nodes test))))
(class (test-class test)))
(cond
(class
@@ -149,6 +165,21 @@
(cxml:validity-error ()
(format t " invalid")
t))))
+
+(defmethod run-test
+ ((class (eql :not-wf)) pathname output description &rest args)
+ (assert (null args))
+ (handler-case
+ (progn
+ (format t " [not-wf?]")
+ (cxml:parse-file pathname (dom:make-dom-builder) :validate t)
+ nil)
+ (:no-error (n1l)
+ (error "well-formedness violation not detected")
+ n1l)
+ (serious-condition ()
+ (format t " not-wf")
+ t)))
#+(or)
(xmlconf::run-all-tests "/mnt/debian/space/xmlconf/")
1
0
Update of /project/cxml/cvsroot/cxml/xml
In directory common-lisp.net:/tmp/cvs-serv16400/xml
Modified Files:
xml-parse.lisp
Log Message:
ignore-errors workaround fuer PATHNAME auf SBCL
Date: Sat Nov 26 23:21:51 2005
Author: dlichteblau
Index: cxml/xml/xml-parse.lisp
diff -u cxml/xml/xml-parse.lisp:1.8 cxml/xml/xml-parse.lisp:1.9
--- cxml/xml/xml-parse.lisp:1.8 Sat Nov 26 23:15:10 2005
+++ cxml/xml/xml-parse.lisp Sat Nov 26 23:21:51 2005
@@ -2950,7 +2950,9 @@
(defun safe-stream-sysid (stream)
(if (and (typep (resolve-synonym-stream stream) 'file-stream)
- (pathname stream))
+ ;; ignore-errors, because sb-bsd-sockets creates instances of
+ ;; FILE-STREAMs that aren't
+ (ignore-errors (pathname stream)))
(pathname-to-uri (pathname stream))
nil))
@@ -3063,113 +3065,6 @@
'(consume-token zstream)) )
name kind))
-;;;;
-
-#|
-
-(defparameter *test-files*
- '(;;"jclark:xmltest;not-wf;*;*.xml"
- "jclark:xmltest;valid;*;*.xml"
- ;;"jclark:xmltest;invalid;*.xml"
- ))
-
-(defun run-all-tests (&optional (test-files *test-files*))
- (let ((failed nil))
- (dolist (k test-files)
- (dolist (j (sort (directory k) #'string< :key #'pathname-name))
- (unless (test-file j)
- (push j failed))))
- (fresh-line)
- (cond (failed
- (write-string "**** Test failed on")
- (dolist (k failed)
- (format t "~%**** ~S." k))
- nil)
- (t
- (write-string "**** Test passed!")
- t))))
-
-(defun test-file (filename)
- (let ((out-filename (merge-pathnames "out/" filename)))
- (if (probe-file out-filename)
- (positive-test-file filename out-filename)
- (negative-test-file filename))))
-
-(defun positive-test-file (filename out-filename)
- (multiple-value-bind (nodes condition)
- (ignore-errors (parse-file filename))
- (cond (condition
- (warn "**** Error in ~S: ~A." filename condition)
- nil)
- (t
- (let (res equal?)
- (setf res (with-output-to-string (sink)
- (unparse-document nodes sink)))
- (setf equal?
- (with-open-file (in out-filename :direction :input :element-type 'character)
- (do ((i 0 (+ i 1))
- (c (read-char in nil nil) (read-char in nil nil)))
- ((or (eq c nil) (= i (length res)))
- (and (eq c nil) (= i (length res))))
- (unless (eql c (char res i))
- (return nil)))))
- (cond ((not equal?)
- (format t "~&**** Test failed on ~S." filename)
- (fresh-line)
- (format t "** me: ~A" res)
- (fresh-line)
- (format t "** he: " res)
- (finish-output)
- (with-open-file (in out-filename :direction :input :element-type 'character)
- (do ((c (read-char in nil nil) (read-char in nil nil)))
- ((eq c nil))
- (write-char c)))
- nil)
- (t
- t)))))))
-
-(defun negative-test-file (filename)
- (multiple-value-bind (nodes condition)
- (ignore-errors (parse-file filename))
- (declare (ignore nodes))
- (cond (condition
- t)
- (t
- (warn "**** negative test failed on ~S." filename)))))
-
-|#
-
-;;;;
-
-#+(or) ;was ist das?
-(progn
-
- (defmethod dom:create-processing-instruction ((document null) target data)
- (declare (ignorable document target data))
- nil)
-
- (defmethod dom:append-child ((node null) child)
- (declare (ignorable node child))
- nil)
-
- (defmethod dom:create-element ((document null) name)
- (declare (ignorable document name))
- nil)
-
- (defmethod dom:set-attribute ((document null) name value)
- (declare (ignorable document name value))
- nil)
-
- (defmethod dom:create-text-node ((document null) data)
- (declare (ignorable document data))
- nil)
-
- (defmethod dom:create-cdata-section ((document null) data)
- (declare (ignorable document data))
- nil)
- )
-
-
#||
(defmacro read-data-until* ((predicate input res res-start res-end) &body body)
;; fast variant -- for now disabled for no apparent reason
@@ -3223,9 +3118,6 @@
(sf rptr (%+ rptr 1))) ))
,@body ))
||#
-
-;(defun read-data-until (predicate input continuation)
-; )
(defmacro read-data-until* ((predicate input res res-start res-end) &body body)
"Read data from `input' until `predicate' applied to the read char
1
0