Disable documentation warning in iteropts test

Fails because some functions have different parameter lists depending on lwIP options (e.g. netif_add())
This commit is contained in:
Dirk Ziegelmeier 2019-02-02 22:59:54 +01:00
parent 78a0a62484
commit 3f4e183e3f

View File

@ -17,7 +17,7 @@ do
rm $EXAPPDIR/lwipopts_test.h
# cat the file to update its timestamp
cat $f > $EXAPPDIR/lwipopts_test.h
make TESTFLAGS=-DLWIP_OPTTEST_FILE -j 8 1> $BUILDLOG 2>&1 || (RETVAL=1; echo file $f failed >> $LOGFILE; echo ++++++++ $f FAILED +++++++; cat $BUILDLOG)
make TESTFLAGS=-DLWIP_OPTTEST_FILE -Wno-documentation -j 8 1> $BUILDLOG 2>&1 || (RETVAL=1; echo file $f failed >> $LOGFILE; echo ++++++++ $f FAILED +++++++; cat $BUILDLOG)
echo test $f done >> $LOGFILE
done
echo done, cleaning