iXML Community Group Test Suite

23 Oct 2023 (22 Nov 2023)

Top-level catalog for tests in the iXML Community Group Test Suite.

Tests have been contributed from several sources, but the core of the test collection are the tests contributed by Steven Pemberton in December 2021.

Misc tests 3

28 Jun 2022

Grammars 41-60.

Tests compiled manually in 2018 and 2019, re-packaged and extended (supplying test cases where needed) in 2022.

Note that some tests have alternate results for processors operating in non-standard modes, in particular modes in which they tolerate multiple definitions and undefined nonterminals or in which they do not tolerate non-productive nonterminals or unreachable nonterminals.

For a description of the form in which alternate results are recorded, see tests/misc-grammar/test-catalog.xml.

sample.grammar.56

Created 08 Feb 2022 by cmsmcq

A grammar with undefined, unproductive, and unreachable nonterminals.

Alternate expected results are given for processors running with an option to tolerate multiple definitions and undefined symbols.

Invisible XML Grammar

{ Sample grammar adapted from Dick Grune and Ceriel J. H. Jacobs,
    Parsing techniques: A practical guide (New York: Ellis Horwood, 1990;
    second edition New York:  Springer, 2008), pp. 109 (1e) and 142 (2e).

    This is an augmented form of the regular grammar in 55, intended to
    illustrate the existence of undefined, unproductive, and unreachable
    non-terminals in regular grammars.
    }

    { Revisions:
    2018-08-09 : CMSMcQ : made first transcription.
    }

    S: "a", A; "a", B.
    A: "b", B.
    A: "b", C.
    B: "c", A.
    B: "c", C.
    C: "a".

    B: "c", D. { undefined }
    B: "c", E.
    E: "e", E. { unproductive }
    F: "f", A.  { unreachable }
    F: "h".


    

Test case: g56.c07

Repository URI: …/tests/misc/misc-041-060-catalog.xml

Input string (3 characters)

acb

Expected result

The grammar is invalid. Raises a static error: one of S02, S03.

Application specific extension

  • Q{http://blackmesatech.com/2019/iXML/Aparecium}multiple-definitions = warning
  • Q{http://blackmesatech.com/2019/iXML/Aparecium}undefined-symbols = warning
  • Q{http://blackmesatech.com/2019/iXML/Aparecium}multiple-definitions = silence
  • Q{http://blackmesatech.com/2019/iXML/Aparecium}undefined-symbols = silence

Expected result

Expected result

The input does not match the grammar.