summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-04-12 15:04:54 +0100
committerCarl Hetherington <cth@carlh.net>2016-04-12 15:04:54 +0100
commit134af470d2f35745548ec4c581c43af230187f15 (patch)
tree6405cf5969416c065cc0ed06e0e7d3b754b743a9
parent4b8c626b7e66ab1d4d69606e10316542c8873842 (diff)
Detect errors correctly from dcpinfo.
-rwxr-xr-xrun/tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/run/tests b/run/tests
index feed6883..ca4df7c6 100755
--- a/run/tests
+++ b/run/tests
@@ -1,4 +1,4 @@
-#!/bin/bash -e
+#!/bin/bash
#
# Run our test suite.
@@ -71,7 +71,7 @@ fi
rm -f $work/info.log
for d in `find $private/metadata -mindepth 1 -maxdepth 1 -type d | sort -f -d`; do
if [ `basename $d` != ".git" ]; then
- $dcpinfo --ignore-missing-assets -k -s $d 2> /dev/null >> $work/info.log
+ $dcpinfo --ignore-missing-assets -k -s $d >> $work/info.log
if [ "$?" != "0" ]; then
echo "FAIL: dcpinfo failed for $d"
exit 1