summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2011-12-22 12:00:45 -0700
committerEric Blake <eblake@redhat.com>2011-12-22 13:01:09 -0700
commitdc099b8338c5674f4faa166040f0e990614de22f (patch)
treee97dd5d302a16c7d15d2ca6285a6cde0d5a0bf39 /tests/schematestutils.sh
parentqemu: Support for overriding NOFILE limit (diff)
downloadlibvirt-dc099b8338c5674f4faa166040f0e990614de22f.tar.gz
libvirt-dc099b8338c5674f4faa166040f0e990614de22f.tar.bz2
libvirt-dc099b8338c5674f4faa166040f0e990614de22f.zip
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.
Diffstat (limited to 'tests/schematestutils.sh')
-rw-r--r--tests/schematestutils.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/schematestutils.sh b/tests/schematestutils.sh
index ec6452a00..436122160 100644
--- a/tests/schematestutils.sh
+++ b/tests/schematestutils.sh
@@ -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"