From cd846b47977485bd4063e77a3324e6b7840567a2 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Sun, 21 Feb 2016 12:12:26 +0100
Subject: [PATCH] fate: Ignore errors from concatenating report files

Some files may be missing for valid reasons, e.g. on compile failure.
---
 tests/fate.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/fate.sh b/tests/fate.sh
index a1929811fa0..b8ee1ae549f 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
 }
 
-- 
GitLab