diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-02-21 12:12:26 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-02-23 11:45:37 +0100 |
commit | cd846b47977485bd4063e77a3324e6b7840567a2 (patch) | |
tree | a2737d628084234fa6e8d25186ccc3229a9da5c4 /tests/fate.sh | |
parent | 9328adcc8012a1b0e00c465c85b5453589a4f5f7 (diff) | |
download | ffmpeg-cd846b47977485bd4063e77a3324e6b7840567a2.tar.gz |
fate: Ignore errors from concatenating report files
Some files may be missing for valid reasons, e.g. on compile failure.
Diffstat (limited to 'tests/fate.sh')
-rwxr-xr-x | tests/fate.sh | 2 |
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 } |