From fc2e785165aaa5d3a7e11e9603cdbdb48a9f294d Mon Sep 17 00:00:00 2001 From: liuhaitao Date: Thu, 16 Jul 2020 20:27:07 +0800 Subject: [PATCH] testbuild.sh: suppress logs from configure stage in testbuild.sh Since testbuild.sh called by nightly build and check build, it should suppress logs from configure stage to keep all output clean. Signed-off-by: liuhaitao --- tools/testbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testbuild.sh b/tools/testbuild.sh index b887b3b03b..af04e829e3 100755 --- a/tools/testbuild.sh +++ b/tools/testbuild.sh @@ -199,7 +199,7 @@ function distclean { function configure { echo " Configuring..." - if ! ./tools/configure.sh ${HOPTION} $config ${JOPTION}; then + if ! ./tools/configure.sh ${HOPTION} $config ${JOPTION} 1>/dev/null; then fail=1 fi