From: Amos Jeffries Date: Sat, 23 Aug 2008 03:43:59 +0000 (+1200) Subject: Quieten overly verbose build testing X-Git-Tag: SQUID_3_1_0_1~49^2~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3148fdf113bb255575d0371d5f0b050c6a4b311a;p=thirdparty%2Fsquid.git Quieten overly verbose build testing * silences script debug per-action details * silences unneeded configure output down to errors-only * diverts automake error output into logs --- diff --git a/test-suite/buildtest.sh b/test-suite/buildtest.sh index 1ea9bd4bff..94403634e9 100755 --- a/test-suite/buildtest.sh +++ b/test-suite/buildtest.sh @@ -1,4 +1,4 @@ -#!/bin/sh -ex +#!/bin/sh # # Configure and run a test build against any given set of configure options # or compile-time flags. @@ -33,9 +33,9 @@ make -k distclean || echo "distclean done. errors are unwanted but okay here." # rm -f -r src/fs/aufs/.deps src/fs/diskd/.deps && ./bootstrap.sh && - ./configure ${OPTS} && - make check && - make + ./configure --silent ${OPTS} 2>&1 && + make check 2>&1 && + make 2>&1 } 2>&1 > ./buildtest_${log}.log