summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-02-21 12:12:26 +0100
committerDiego Biurrun <diego@biurrun.de>2016-02-23 11:45:37 +0100
commitcd846b47977485bd4063e77a3324e6b7840567a2 (patch)
treea2737d628084234fa6e8d25186ccc3229a9da5c4 /tests
parent9328adcc8012a1b0e00c465c85b5453589a4f5f7 (diff)
fate: Ignore errors from concatenating report files
Some files may be missing for valid reasons, e.g. on compile failure.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/fate.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate.sh b/tests/fate.sh
index a1929811fa..b8ee1ae549 100755
--- a/tests/fate.sh
+++ b/tests/fate.sh
@@ -83,7 +83,7 @@ clean(){
report(){
date=$(date -u +%Y%m%d%H%M%S)
echo "fate:1:${date}:${slot}:${version}:$1:$2:${branch}:${comment}" >report
- cat ${build}/config.fate ${build}/tests/data/fate/*.rep >>report
+ cat ${build}/config.fate ${build}/tests/data/fate/*.rep >>report 2>/dev/null
test -n "$fate_recv" && $tar report *.log | gzip | $fate_recv
}