Commit 76de4ea6 authored by Diego Biurrun's avatar Diego Biurrun

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
parent eb3ba13b
......@@ -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
......@@ -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
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