]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Quieten overly verbose build testing
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 23 Aug 2008 03:43:59 +0000 (15:43 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 23 Aug 2008 03:43:59 +0000 (15:43 +1200)
* silences script debug per-action details
* silences unneeded configure output down to errors-only
* diverts automake error output into logs

test-suite/buildtest.sh

index 1ea9bd4bffd0c36563ac3dee34b5c4330b598cc9..94403634e9fc5a6badbe1fd99bc8f1c68350915d 100755 (executable)
@@ -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