From: David Kalnischkies Date: Wed, 17 Aug 2011 13:49:59 +0000 (+0200) Subject: set the msglevel to a high dummy value if none is specified X-Git-Tag: 0.8.15.7~2^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/fe268128119bc73403003a29b66c927b9c36690d set the msglevel to a high dummy value if none is specified --- diff --git a/test/integration/run-tests b/test/integration/run-tests index 292986822..75f2ad662 100755 --- a/test/integration/run-tests +++ b/test/integration/run-tests @@ -17,6 +17,10 @@ elif [ -z "${MSGLEVEL}" ]; then export MSGLEVEL=2 fi +if [ -z "$MSGLEVEL" ]; then + MSGLEVEL=5 +fi + for testcase in $(run-parts --list $DIR | grep '/test-'); do if [ "$MSGLEVEL" -le 2 ]; then echo -n "${CTEST}Testcase ${CHIGH}$(basename ${testcase})${CRESET}: "