Print the name of the regression test that was run after finishing the test.

Originally committed as revision 11664 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-01-29 23:30:00 +00:00
parent eb3ba13b51
commit 76de4ea681
2 changed files with 4 additions and 4 deletions

View File

@ -745,10 +745,10 @@ fi # [ -n "$do_libavtest" ]
if $diff_cmd "$logfile" "$reffile" ; then
echo
echo Regression test succeeded.
echo $1 regression test: success
exit 0
else
echo
echo Regression test: Error.
echo $1 regression test: error
exit 1
fi

View File

@ -19,10 +19,10 @@ done
if diff -u "$reffile" "$logfile" ; then
echo
echo Regression test succeeded.
echo seek regression test: success
exit 0
else
echo
echo Regression test: Error.
echo seek regression test: error
exit 1
fi