summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-03 20:18:07 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-03 20:18:07 +0100
commit09e16aa3acf7878b54a4995a0be79890f26db09f (patch)
treefe46fe5a8d980ad0c2e6cfd7300a32a061da9068 /run
parentfe9bbdf3f5223ee94cb51ba00ddab7f4a6ddb754 (diff)
Assorted test fixes.
Diffstat (limited to 'run')
-rwxr-xr-xrun/tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/run/tests b/run/tests
index df4ed594..5113b3af 100755
--- a/run/tests
+++ b/run/tests
@@ -55,7 +55,7 @@ fi
rm -f $work/info.log
for d in `find $private/metadata -mindepth 1 -maxdepth 1 -type d | sort`; do
if [ `basename $d` != ".git" ]; then
- $dcpinfo -k -s $d 2> /dev/null >> $work/info.log
+ $dcpinfo --ignore-missing-assets -k -s $d 2> /dev/null >> $work/info.log
if [ "$?" != "0" ]; then
echo "FAIL: dcpinfo failed for $d"
exit 1
@@ -79,7 +79,7 @@ cp -r $private/* $work/private
for d in `find $work/private/metadata -mindepth 1 -maxdepth 1 -type d | sort`; do
if [ `basename $d` != ".git" ]; then
$work/rewrite_subs $d
- $dcpinfo -k -s $d 2>&1 >> $work/info2.log
+ $dcpinfo --ignore-missing-assets -k -s $d >> $work/info2.log
fi
done