mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
Fix iteropts.sh to correctly return error code
This commit is contained in:
parent
32bc761245
commit
a7b06bef5f
@ -17,7 +17,14 @@ do
|
||||
rm $EXAPPDIR/lwipopts_test.h
|
||||
# cat the file to update its timestamp
|
||||
cat $f > $EXAPPDIR/lwipopts_test.h
|
||||
make TESTFLAGS="-DLWIP_OPTTEST_FILE -Wno-documentation" -j 4 1> $BUILDLOG 2>&1 || (RETVAL=1; echo file $f failed >> $LOGFILE; echo ++++++++ $f FAILED +++++++; cat $BUILDLOG)
|
||||
make TESTFLAGS="-DLWIP_OPTTEST_FILE -Wno-documentation" -j 4 1> $BUILDLOG 2>&1
|
||||
ERR=$?
|
||||
if [ $ERR != 0 ]; then
|
||||
cat $BUILDLOG
|
||||
echo file $f failed with $ERR >> $LOGFILE
|
||||
echo ++++++++ $f FAILED +++++++
|
||||
RETVAL=1
|
||||
fi
|
||||
echo test $f done >> $LOGFILE
|
||||
done
|
||||
echo done, cleaning
|
||||
|
Loading…
Reference in New Issue
Block a user