diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-23 23:38:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-24 00:35:38 +0200 |
commit | 00d3bb1a074b60fd9687679e4147f56d81886b05 (patch) | |
tree | fb91f8d32c7c662cd4d4834510b9e7a05acc0477 | |
parent | 9f0ba52f3444c21f752e30d22f2e9dacee9feb71 (diff) | |
download | ffmpeg-00d3bb1a074b60fd9687679e4147f56d81886b05.tar.gz |
tests/fate-run.sh: Cat .err file in case of error with V>0
This may make fate failures where only the console output is available
easier to analyze
Suggested-by: Andreas Cadhalpun
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rwxr-xr-x | tests/fate-run.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 7fe7e7495e..b994abab27 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -248,6 +248,7 @@ if test $err = 0; then rm -f $outfile $errfile $cmpfile $cleanfiles elif test $gen = "no"; then echo "Test $test failed. Look at $errfile for details." + test "${V:-0}" -gt 0 && cat $errfile else echo "Updating reference failed, possibly no output file was generated." fi |