tools/testbuild.sh: suppress lots of stdout log from configure.sh

Redirect configure.sh stdout to /dev/null to suppress lots of log
since configure.sh behaviour updated.

Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
This commit is contained in:
liuhaitao 2020-03-22 10:14:59 +08:00 committed by Xiang Xiao
parent d410a29693
commit f0267aff33
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ function distclean {
function configure {
echo " Configuring..."
./tools/configure.sh ${HOPTION} $config
./tools/configure.sh ${HOPTION} $config 1>/dev/null
if [ "X$toolchain" != "X" ]; then
setting=`grep _TOOLCHAIN_ $nuttx/.config | grep -v CONFIG_ARCH_TOOLCHAIN_* | grep =y`