Skip to content
Snippets Groups Projects
Commit 3d38a726 authored by Clément Bœsch's avatar Clément Bœsch
Browse files

fate: give stderr hint when a test fails.

parent 2ffee0f4
No related branches found
No related tags found
No related merge requests found
......@@ -136,5 +136,9 @@ fi
echo "${test}:${sig:-$err}:$($base64 <$cmpfile):$($base64 <$errfile)" >$repfile
test $err = 0 && rm -f $outfile $errfile $cmpfile $cleanfiles
if test $err = 0; then
rm -f $outfile $errfile $cmpfile $cleanfiles
else
echo "Test $test failed. Look at $errfile for details."
fi
exit $err
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment