Test results for Solaris sparc

test_003051_rnc_line_alt1

Test description

Test for RNC schema wildcard handling.

Test status

 Pass

Run command

cat _INPUT_DATA_ ¦ xmlfy -S schema.rnc -R .

Input data

Word. Two words. Now three words. This is four words.

Schema

start = paragraph
paragraph = element paragraph { sentence+ }
sentence = element sentence { startword?, middleword*, endword }
startword = element startword { text }
middleword = element middleword { text }
endword = element endword { text }

Output result

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE paragraph SYSTEM "schema.rnc">
<paragraph>
  <sentence>
    <endword>Word</endword>
  </sentence>
  <sentence>
    <startword>Two</startword>
    <endword>words</endword>
  </sentence>
  <sentence>
    <startword>Now</startword>
    <middleword>three</middleword>
    <endword>words</endword>
  </sentence>
  <sentence>
    <startword>This</startword>
    <middleword>is</middleword>
    <middleword>four</middleword>
    <endword>words</endword>
  </sentence>
</paragraph>

Goto:   Top of page.   Section "Environment".   Section "Summary".   Section "Test cases".