summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-05-05 00:52:44 +0100
committerCarl Hetherington <cth@carlh.net>2015-05-05 00:52:44 +0100
commit42ba2606e30c5a7f13e5a06304a1a97769f8edf5 (patch)
tree56de00de4019c81b8e3120ceaa71e26272f3d79b
parent8a3198395f518a2ec6f0572bb434b7ead00b9887 (diff)
Try to fix incorrect test failures.
-rwxr-xr-xrun/tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/run/tests b/run/tests
index 588e756c..91ce1d90 100755
--- a/run/tests
+++ b/run/tests
@@ -53,7 +53,7 @@ fi
# Run dcpinfo on all the DCPs in private/metadata, writing $work/info.log
rm -f $work/info.log
-for d in `find $private/metadata -mindepth 1 -maxdepth 1 -type d | sort`; do
+for d in `find $private/metadata -mindepth 1 -maxdepth 1 -type d | sort -f`; do
if [ `basename $d` != ".git" ]; then
$dcpinfo -s $d >> $work/info.log
if [ "$?" != "0" ]; then