1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

tests/fate.sh: report different status for different errors

The order of error codes will be useful in my future fateserver patches.

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Timothy Gu
2014-06-09 21:46:37 -07:00
committed by Michael Niedermayer
parent b05d50898f
commit cc0057a31c

View File

@@ -111,8 +111,8 @@ echo ${version} >version-$slot
rm -rf "${build}" *.log rm -rf "${build}" *.log
mkdir -p ${build} mkdir -p ${build}
configure >configure.log 2>&1 || fail $? "error configuring" configure >configure.log 2>&1 || fail 3 "error configuring"
compile >compile.log 2>&1 || fail $? "error compiling" compile >compile.log 2>&1 || fail 2 "error compiling"
fate >test.log 2>&1 || fail $? "error testing" fate >test.log 2>&1 || fail 1 "error testing"
report 0 success report 0 success
clean clean