tests: fix schema checks sorting

Commit 6fdbce12 attempted to sort the list of tests, but failed
(without quotes, echo merges all the tests into a single line,
so there was nothing to sort).

* tests/schematestutils.sh: Fix thinko in previous patch.
This commit is contained in:
Eric Blake 2011-12-22 12:00:45 -07:00
parent d8db0f9690
commit dc099b8338

View File

@ -13,7 +13,7 @@ for dir in $DIRS
do
XML=`find $abs_srcdir/$dir -name '*.xml'` || exit 1
for xml in `echo $XML | sort`
for xml in `echo "$XML" | sort`
do
n=`expr $n + 1`
cmd="xmllint --relaxng $SCHEMA --noout $xml"