Просмотр исходного кода

set the msglevel to a high dummy value if none is specified

David Kalnischkies лет назад: 15
Родитель
Сommit
fe26812811
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      test/integration/run-tests

+ 4 - 0
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}: "