Commit ed1fe7b2 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '5c83b4d5'

* commit '5c83b4d5':
  fate: Unset the sig variable if ignoring a test failure
Merged-by: 's avatarClément Bœsch <cboesch@gopro.com>
parents ae68bb77 5c83b4d5
...@@ -364,7 +364,7 @@ if test -e "$ref" || test $cmp = "oneline" || test $cmp = "grep" ; then ...@@ -364,7 +364,7 @@ if test -e "$ref" || test $cmp = "oneline" || test $cmp = "grep" ; then
cmperr=$? cmperr=$?
test $err = 0 && err=$cmperr test $err = 0 && err=$cmperr
if [ "$report_type" = "ignore" ]; then 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 else
test $err = 0 || cat $cmpfile test $err = 0 || cat $cmpfile
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment