summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-08-17 15:49:59 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-08-17 15:49:59 +0200
commitfe268128119bc73403003a29b66c927b9c36690d (patch)
tree0dd7241e4fa9a06090d5cd8da4c7de87065ba08b
parent92d5a40da433833380626b9678c4887568505b6d (diff)
set the msglevel to a high dummy value if none is specified
-rwxr-xr-xtest/integration/run-tests4
1 files changed, 4 insertions, 0 deletions
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}: "