mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
fate: Unset the sig variable if ignoring a test failure
Otherwise the .rep file would still contain a signal instead of a zero, even if the process returned success. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
35d1f726eb
commit
5c83b4d550
@ -214,7 +214,7 @@ if test -e "$ref" || test $cmp = "oneline" ; then
|
||||
cmperr=$?
|
||||
test $err = 0 && err=$cmperr
|
||||
if [ "$report_type" = "ignore" ]; then
|
||||
test $err = 0 || echo "IGNORE fate-${test}" && err=0
|
||||
test $err = 0 || echo "IGNORE fate-${test}" && err=0 && unset sig
|
||||
else
|
||||
test $err = 0 || cat $cmpfile
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user