cldr-emoji-annotation/tests/runtest.sh
Petr Šabata f743e40567 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/cldr-emoji-annotation#9c0e9952528b95756b29a37fb2442a5b9252a0cc
2020-10-14 22:54:26 +02:00

14 lines
322 B
Bash
Executable File

#!/bin/sh
for dir in annotations annotationsDerived; do
for xml in /usr/share/unicode/cldr/common/$dir/*.xml; do
echo xmllint --noout --valid --postvalid $xml
xmllint --noout --valid --postvalid $xml
if [ $? -ne 0 ] ; then
echo "ERROR"
exit 1
fi
done
done