#!/bin/sh # Architectural Form: test ArcBridA: # Resolving IDREFs (series: af-12 - af-15) # test onsgmls and osgmlnorm LANG=C; export LANG LC_ALL=C; export LC_ALL tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 tmpfiles="$tmpfiles af-13.sgml af-13.dtd af-meta-13.dtd" cat <af-13.sgml verse 1 verse 2 note on verse 2 EOF cat <af-13.dtd EOF cat <af-meta-13.dtd EOF tmpfiles="$tmpfiles af-13-onsgmls.out" : ${ONSGMLS=onsgmls} ${ONSGMLS} >af-13-onsgmls.out -A open af-13.sgml tmpfiles="$tmpfiles af-13-onsgmls.ok" cat <af-13-onsgmls.ok (OPEN (STANZA AN TOKEN N1 (VERSE -verse 1 )VERSE AN TOKEN N2 (VERSE -verse 2 )VERSE )STANZA (NOTES AR TOKEN N2 (I -note on verse 2 )I )NOTES )OPEN C EOF : ${DIFF=diff} ${DIFF} af-13-onsgmls.ok af-13-onsgmls.out result=$? test $result = 0 || { rm -fr $tmpfiles; exit 1; } tmpfiles="$tmpfiles af-13-norm.out" : ${OSGMLNORM=osgmlnorm} ${OSGMLNORM} >af-13-norm.out -A open af-13.sgml tmpfiles="$tmpfiles af-13-norm.ok" cat <af-13-norm.ok verse 1 verse 2 note on verse 2 EOF ${DIFF} af-13-norm.ok af-13-norm.out result=$? test $result = 0 || result=$(($result + 1)) rm -fr $tmpfiles exit $result