Test results for Solaris sparc

test_001172_option_schemarnc

Test description

Test for elements generated from the contents of a RNC schema.

Test status

 Pass

Run command

cat _INPUT_DATA_ ¦ xmlfy -Sr schema.rnc

Input data

Team Won Lost Drawn
Barcelona 5 1 2
Manchester 4 2 2
 
Milan 2 2 4

Schema

start = soccer
soccer = element soccer { heading ¦ match* }
heading = element heading { team, won, lost, drawn }
match = element match { team, won, lost, drawn }
team = element team { text }
won = element won { text }
lost = element lost { text }
drawn = element drawn { text }

Output result

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE soccer SYSTEM "schema.rnc">
<soccer>
  <heading>
    <team>Team</team>
    <won>Won</won>
    <lost>Lost</lost>
    <drawn>Drawn</drawn>
  </heading>
  <match>
    <team>Barcelona</team>
    <won>5</won>
    <lost>1</lost>
    <drawn>2</drawn>
  </match>
  <match>
    <team>Manchester</team>
    <won>4</won>
    <lost>2</lost>
    <drawn>2</drawn>
  </match>
  <match>
    <team>Milan</team>
    <won>2</won>
    <lost>2</lost>
    <drawn>4</drawn>
  </match>
</soccer>

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