test-wikiparser: Remove fixes.xslt step

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
James Valleroy 2020-08-28 12:14:00 -04:00
parent ce642e3e87
commit 9a4c6a78a3
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -3,7 +3,7 @@
for var in "$@"
do
gen=$(python3 scripts/wikiparser.py "$var" --begin-marker='## BEGIN_INCLUDE' --end-marker='## END_INCLUDE' | xsltproc scripts/fixes.xslt - | xmllint --format -)
gen=$(python3 scripts/wikiparser.py "$var" --begin-marker='## BEGIN_INCLUDE' --end-marker='## END_INCLUDE' | xmllint --format -)
orig=$(xmllint --format "${var//.raw.wiki/.xml}" )
diff --ignore-all-space <(echo "$gen") <(echo "$orig")
done