1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00
libxml2/test/relaxng
Nick Wellnhofer 01411e7c5e Check for invalid redeclarations of predefined entities
Implement section "4.6 Predefined Entities" of the XML 1.0 spec and
check whether redeclarations of predefined entities match the original
definitions.

Note that some test cases declared

    <!ENTITY lt "<">

But the XML spec clearly states that this is illegal:

> If the entities lt or amp are declared, they MUST be declared as
> internal entities whose replacement text is a character reference to
> the respective character (less-than sign or ampersand) being escaped;
> the double escaping is REQUIRED for these entities so that references
> to them produce a well-formed result.

Also fixes #217 but the connection is only tangential. The integer
overflow discovered by fuzzing was more related to the fact that various
parts of the parser disagreed on whether to prefer predefined entities
over their redeclarations. The whole situation is a mess and even
depends on legacy parser options. But now that redeclarations are
validated, it shouldn't make a difference.

As noted in the added comment, this is also one of the cases where
overly defensive checks can hide interesting logic bugs from fuzzers.
2021-02-08 21:51:26 +01:00
..
OASIS OASIS RelaxNG testsuite python script to run regression against OASIS 2003-02-10 14:28:44 +00:00
302836_0.xml Adding test file, Daniel 2006-10-13 16:39:14 +00:00
302836.rng Adding test file, Daniel 2006-10-13 16:39:14 +00:00
307377_0.xml fixed bug #307377 about validation of choices in list values. added 2005-08-10 16:23:57 +00:00
307377_1.xml fixed bug #307377 about validation of choices in list values. added 2005-08-10 16:23:57 +00:00
307377_2.xml fixed bug #307377 about validation of choices in list values. added 2005-08-10 16:23:57 +00:00
307377.rng fixed bug #307377 about validation of choices in list values. added 2005-08-10 16:23:57 +00:00
492317_0.xml 492317 Fix Relax-NG validation problems 2009-08-31 16:47:39 +02:00
492317_1.xml 492317 Fix Relax-NG validation problems 2009-08-31 16:47:39 +02:00
492317_2.xml 492317 Fix Relax-NG validation problems 2009-08-31 16:47:39 +02:00
492317.rng 492317 Fix Relax-NG validation problems 2009-08-31 16:47:39 +02:00
558452_0.xml 558452 fight with reg test and error report 2009-08-26 18:37:43 +02:00
558452_1.xml 558452 fight with reg test and error report 2009-08-26 18:37:43 +02:00
558452_2.xml 558452 fight with reg test and error report 2009-08-26 18:37:43 +02:00
558452_3.xml 558452 fight with reg test and error report 2009-08-26 18:37:43 +02:00
558452_4.xml 558452 fight with reg test and error report 2009-08-26 18:37:43 +02:00
558452.rng 558452 fight with reg test and error report 2009-08-26 18:37:43 +02:00
565219_0.xml Fix support for except in nameclasses 2015-03-16 08:43:37 +08:00
565219_1.xml Fix support for except in nameclasses 2015-03-16 08:43:37 +08:00
565219_2.xml Fix support for except in nameclasses 2015-03-16 08:43:37 +08:00
565219.rng Fix support for except in nameclasses 2015-03-16 08:43:37 +08:00
595792_0.xml 595792 fixing a RelaxNG bug introduced in 2.7.4 2009-09-24 11:31:48 +02:00
595792-ext.rng 595792 fixing a RelaxNG bug introduced in 2.7.4 2009-09-24 11:31:48 +02:00
595792.rng 595792 fixing a RelaxNG bug introduced in 2.7.4 2009-09-24 11:31:48 +02:00
710744_1.xml Implement choice for name classes on attributes 2013-11-28 16:09:00 +08:00
710744_2.xml Implement choice for name classes on attributes 2013-11-28 16:09:00 +08:00
710744.rng Implement choice for name classes on attributes 2013-11-28 16:09:00 +08:00
addressBook.rng include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
ambig_name-class2.rng Fix unability to RelaxNG-validate grammar with choice-based name class 2019-08-25 13:29:04 +02:00
ambig_name-class2.xml Fix unability to RelaxNG-validate grammar with choice-based name class 2019-08-25 13:29:04 +02:00
ambig_name-class.rng Fix unability to validate ambiguously constructed interleave for RelaxNG 2019-08-25 13:29:04 +02:00
ambig_name-class.xml Fix unability to validate ambiguously constructed interleave for RelaxNG 2019-08-25 13:29:04 +02:00
anyName0_0.xml Allow choice within choice in nameClass in RELAX NG 2018-11-29 21:03:11 +01:00
anyName0.rng Allow choice within choice in nameClass in RELAX NG 2018-11-29 21:03:11 +01:00
choice0_0.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0_1.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0_2.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0_3.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0_4.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0_5.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0_6.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0_7.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0_8.xml fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
choice0.rng fixed bug #157633 in relaxng choice optimization added regression tests 2005-01-15 12:38:10 +00:00
compare0_0.xml fixed a bug exposed by Rob Richards in the mailing-list added the 2005-06-13 11:41:31 +00:00
compare0.rng fixed a bug exposed by Rob Richards in the mailing-list added the 2005-06-13 11:41:31 +00:00
comps_0.xml fix xmlTextReaderSetup() description tests which were apparently never 2007-01-04 17:28:35 +00:00
comps.rng fix xmlTextReaderSetup() description tests which were apparently never 2007-01-04 17:28:35 +00:00
demo2.rng stop generating wrong result file with * in name fixing the include bug 2003-03-10 13:13:58 +00:00
demo3.rng stop generating wrong result file with * in name fixing the include bug 2003-03-10 13:13:58 +00:00
demo.rng stop generating wrong result file with * in name fixing the include bug 2003-03-10 13:13:58 +00:00
demo.xml stop generating wrong result file with * in name fixing the include bug 2003-03-10 13:13:58 +00:00
docbook_0.xml Large batch of typo fixes 2019-09-30 18:04:38 +02:00
docbook.rng attempt to cope with ID/IDREF(S) declared both in the DTD and in the 2003-03-19 21:02:29 +00:00
empty0_0.xml fix xmlTextReaderSetup() description tests which were apparently never 2007-01-04 17:28:35 +00:00
empty0.rng fix xmlTextReaderSetup() description tests which were apparently never 2007-01-04 17:28:35 +00:00
empty1_0.xml fix xmlTextReaderSetup() description tests which were apparently never 2007-01-04 17:28:35 +00:00
empty1_1.xml fix xmlTextReaderSetup() description tests which were apparently never 2007-01-04 17:28:35 +00:00
empty1.rng fix xmlTextReaderSetup() description tests which were apparently never 2007-01-04 17:28:35 +00:00
include0_0.xml Look inside divs for starts and defines inside include 2018-11-29 21:00:46 +01:00
include0.inc Look inside divs for starts and defines inside include 2018-11-29 21:00:46 +01:00
include0.rng Look inside divs for starts and defines inside include 2018-11-29 21:00:46 +01:00
include1_0.xml Remove redefined starts and defines inside include elements 2018-11-29 21:06:06 +01:00
include1-0.inc Remove redefined starts and defines inside include elements 2018-11-29 21:06:06 +01:00
include1-1.inc Remove redefined starts and defines inside include elements 2018-11-29 21:06:06 +01:00
include1.rng Remove redefined starts and defines inside include elements 2018-11-29 21:06:06 +01:00
inline2.rng a bit of work done in the train back. added one of the include tests 2003-02-01 17:43:10 +00:00
inline3.rng include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
inline.rng more work on Relax-NG, implementing externalRef augmented/updated the 2003-01-29 21:07:52 +00:00
interleave0_0.rng fixes a libtool problem on AMD 64bits builds found the validation problem 2003-02-09 14:22:17 +00:00
interleave1_0.rng fixes a libtool problem on AMD 64bits builds found the validation problem 2003-02-09 14:22:17 +00:00
libvirt_0.xml Fix a Relaxng bug raised by libvirt test suite 2009-09-23 18:28:43 +02:00
libvirt.rng Fix a Relaxng bug raised by libvirt test suite 2009-09-23 18:28:43 +02:00
list_0.xml fixed a problem in Relax-NG validation #159968 added the test to the 2005-03-31 13:50:00 +00:00
list_1.xml fixed a problem in Relax-NG validation #159968 added the test to the 2005-03-31 13:50:00 +00:00
list.rng fixed a problem in Relax-NG validation #159968 added the test to the 2005-03-31 13:50:00 +00:00
OpenDocumentSub_0.xml Added new regression tests for #331062, daniel 2006-02-19 15:32:29 +00:00
OpenDocumentSub.rng Added new regression tests for #331062, daniel 2006-02-19 15:32:29 +00:00
pattern1.rng oops forgot two external rngs, Daniel 2003-01-30 05:49:40 +00:00
pattern2.rng oops forgot two external rngs, Daniel 2003-01-30 05:49:40 +00:00
pattern3_1.xml Do normalize string-based datatype value in RelaxNG facet checking 2016-04-15 22:41:24 +08:00
pattern3.rng Do normalize string-based datatype value in RelaxNG facet checking 2016-04-15 22:41:24 +08:00
proofsystem.rng attempt to cope with ID/IDREF(S) declared both in the DTD and in the 2003-03-19 21:02:29 +00:00
rngbug-001.ext added check for external reference in xmlRelaxNGGetElements (bug 137718) 2004-03-20 11:32:36 +00:00
rngbug-001.rng added check for external reference in xmlRelaxNGGetElements (bug 137718) 2004-03-20 11:32:36 +00:00
rngbug-001.xml added check for external reference in xmlRelaxNGGetElements (bug 137718) 2004-03-20 11:32:36 +00:00
spec1_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
spec1.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
spec_0.xml Large batch of typo fixes 2019-09-30 18:04:38 +02:00
spec.rng attempt to cope with ID/IDREF(S) declared both in the DTD and in the 2003-03-19 21:02:29 +00:00
table.rng more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
testsuite.xml fixed xmlRelaxNGNodeMatchesList augmented the test suite this fixes some 2003-03-21 12:43:18 +00:00
tutor1_1_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor1_1.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor1_2_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor1_2.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor1_3_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor1_3.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor1_4_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor1_4.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor2_1_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor2_1.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_1_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_1_2.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_1.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_2_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_2.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_3_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_3.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_4_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_4.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_5_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_5_2.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_5.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_6_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_6.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_7_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_7.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_8_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_8.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_9_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor3_9.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor4_1_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor4_1.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor4_2_1.xml First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor4_2.rng First commit of the new Relax-NG validation code, not generally useful 2003-01-23 18:29:16 +00:00
tutor4_3_1.xml more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor4_3_2.xml more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor4_3_3.xml more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor4_3_4.xml more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor4_3_5.xml more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor4_3_6.xml more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor4_3.rng more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor4_4_1.xml more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor4_4.rng more work on Relax-NG regenerated the docs updated and augmented the 2003-01-24 01:03:34 +00:00
tutor5_1_1.xml updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor5_1.rng more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor5_2_1.xml updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor5_2.rng updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor5_3_1.xml updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor5_3.rng updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor5_4_1.xml updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor5_4.rng updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor5_5.rng updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor6_1_1.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 00:52:04 +00:00
tutor6_1_2.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 00:52:04 +00:00
tutor6_1_3.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 00:52:04 +00:00
tutor6_1_4.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 19:45:18 +00:00
tutor6_1_5.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 19:45:18 +00:00
tutor6_1.rng updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor6_2_1.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 19:45:18 +00:00
tutor6_2_2.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 19:45:18 +00:00
tutor6_2_3.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 19:45:18 +00:00
tutor6_2_4.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 19:45:18 +00:00
tutor6_2.rng updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor6_3_1.xml more work on Relax-NG augmented/updated the regression tests Daniel 2003-01-26 19:45:18 +00:00
tutor6_3.rng updated the policy on private mail answers more work on Relax-NG 2003-01-25 18:01:32 +00:00
tutor7_1_1.xml more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_1_2.xml more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_1_3.xml more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_1_4.xml more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_1.rng more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_2_1.xml more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_2_2.xml more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_2_3.xml more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_2_4.xml more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_2.rng more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor7_3_1.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 20:58:15 +00:00
tutor7_3_2.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 20:58:15 +00:00
tutor7_3_3.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 20:58:15 +00:00
tutor7_3_4.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 20:58:15 +00:00
tutor7_3_5.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 20:58:15 +00:00
tutor7_3.rng more work on Relax-NG augmented/updated the regression tests added a 2003-01-27 12:35:42 +00:00
tutor8_1_1.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 20:58:15 +00:00
tutor8_1_2.xml attempt to cope with ID/IDREF(S) declared both in the DTD and in the 2003-03-19 21:02:29 +00:00
tutor8_1.rng more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 20:58:15 +00:00
tutor8_2_1.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor8_2_2.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor8_2_3.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor8_2_4.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor8_2_5.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor8_2_6.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor8_2.rng more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor8_3_1.xml more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor8_3.rng more work on Relax-NG, implementing interleave augmented/updated the 2003-01-28 23:09:49 +00:00
tutor9_1_1.xml more work on Relax-NG, implementing externalRef augmented/updated the 2003-01-29 21:07:52 +00:00
tutor9_1.rng more work on Relax-NG, implementing externalRef augmented/updated the 2003-01-29 21:07:52 +00:00
tutor9_2_1.xml debugging of externalRef augmented/updated the regression tests Daniel 2003-01-29 23:02:33 +00:00
tutor9_2_2.xml debugging of externalRef augmented/updated the regression tests Daniel 2003-01-29 23:02:33 +00:00
tutor9_2.rng debugging of externalRef augmented/updated the regression tests Daniel 2003-01-29 23:02:33 +00:00
tutor9_3_1.xml more work done in the train augmented/updated the regression tests Daniel 2003-01-30 12:17:05 +00:00
tutor9_3_2.xml more work done in the train augmented/updated the regression tests Daniel 2003-01-30 12:17:05 +00:00
tutor9_3.rng more work done in the train augmented/updated the regression tests Daniel 2003-01-30 12:17:05 +00:00
tutor9_4_1.xml more work done in the train augmented/updated the regression tests Daniel 2003-01-30 12:17:05 +00:00
tutor9_4_2.xml more work done in the train augmented/updated the regression tests Daniel 2003-01-30 12:17:05 +00:00
tutor9_4.rng more work done in the train augmented/updated the regression tests Daniel 2003-01-30 12:17:05 +00:00
tutor9_5_1.xml Combine with interleave on attributes worked without chnages, daniel 2003-01-30 13:41:41 +00:00
tutor9_5_2.xml Combine with interleave on attributes worked without chnages, daniel 2003-01-30 13:41:41 +00:00
tutor9_5_3.xml Combine with interleave on attributes worked without chnages, daniel 2003-01-30 13:41:41 +00:00
tutor9_5.rng more work done in the train augmented/updated the regression tests Daniel 2003-01-30 12:17:05 +00:00
tutor9_6_1.xml More tests from section 9 of the tutorial, Daniel 2003-01-30 14:12:27 +00:00
tutor9_6_2.xml More tests from section 9 of the tutorial, Daniel 2003-01-30 14:12:27 +00:00
tutor9_6_3.xml More tests from section 9 of the tutorial, Daniel 2003-01-30 14:12:27 +00:00
tutor9_6.rng More tests from section 9 of the tutorial, Daniel 2003-01-30 14:12:27 +00:00
tutor9_7_1.xml include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_7.rng a bit of work done in the train back. added one of the include tests 2003-02-01 17:43:10 +00:00
tutor9_8_1.xml include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_8.rng include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_9_1.xml include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_9.rng include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_10_1.xml include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_10.rng include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_11_1.xml include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_11.rng include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_12_1.xml include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor9_12.rng include seems to work okay now augmented/updated the regression tests 2003-02-02 14:35:17 +00:00
tutor10_1_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_1_2.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_1_3.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_1_4.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_1_5.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_1_6.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_1.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_2_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_2_2.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_2_3.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_2_4.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_2.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_3_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_3.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_4_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_4.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_5_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_5.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_6_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_6.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_7_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_7_2.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_7_3.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_7.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_8_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_8_2.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_8_3.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_8.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_9_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_9.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_10_1.xml check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor10_10.rng check all the namespace support was actually correct based on tutorial 2003-02-02 16:02:55 +00:00
tutor11_1_1.xml more work on name classes, the "validate all" schemas seems to work now. 2003-02-03 10:57:45 +00:00
tutor11_1_2.xml more work on name classes, the "validate all" schemas seems to work now. 2003-02-03 10:57:45 +00:00
tutor11_1_3.xml Check for invalid redeclarations of predefined entities 2021-02-08 21:51:26 +01:00
tutor11_1.rng more work on name classes, the "validate all" schemas seems to work now. 2003-02-03 10:57:45 +00:00
tutor11_2_1.xml more work on name classes, except support augmented/updated the regression 2003-02-03 13:17:57 +00:00
tutor11_2_2.xml more work on name classes, except support augmented/updated the regression 2003-02-03 13:17:57 +00:00
tutor11_2_3.xml more work on name classes, except support augmented/updated the regression 2003-02-03 13:17:57 +00:00
tutor11_2.rng more work on name classes, except support augmented/updated the regression 2003-02-03 13:17:57 +00:00
tutor11_3_1.xml more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
tutor11_3.rng more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
tutor11_4_1.xml more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
tutor11_4.rng more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
tutor12_1_1.xml more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
tutor12_1.rng more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
tutor13_1_1.xml more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
tutor13_1.rng more work on grammars and refs/defs augmented/updated the regression tests 2003-02-03 23:22:49 +00:00
tutor14_1.rng fixes a libtool problem on AMD 64bits builds found the validation problem 2003-02-09 14:22:17 +00:00
tutorA.rng fixes a libtool problem on AMD 64bits builds found the validation problem 2003-02-09 14:22:17 +00:00