From 5405c3d97da2a509fae894d6dae1a14541ac366e Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Thu, 18 Oct 2018 22:36:59 +0200 Subject: [PATCH] Cleanup iteropts.sh output a bit --- contrib/ports/unix/example_app/iteropts.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/ports/unix/example_app/iteropts.sh b/contrib/ports/unix/example_app/iteropts.sh index 5b07a249..b393cdf3 100755 --- a/contrib/ports/unix/example_app/iteropts.sh +++ b/contrib/ports/unix/example_app/iteropts.sh @@ -10,17 +10,17 @@ echo Starting Iteropts run >> $LOGFILE for f in $EXAPPDIR/test_configs/*.h do echo Cleaning... - make clean + make clean > /dev/null BUILDLOG=$(basename "$f" ".h").log echo testing $f echo testing $f >> $LOGFILE 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 &> $BUILDLOG 2>&1 || (RETVAL=1; echo file $f failed >> $LOGFILE; echo ++++++++ $f FAILED +++++++; cat $BUILDLOG) + make TESTFLAGS=-DLWIP_OPTTEST_FILE -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 -make clean +make clean > /dev/null popd exit $RETVAL