X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/8d87641558a7e0ee53b03e325614532aa686e01b..cf4904e1e0019fc09b9c53b587f5f4361ed26ec7:/test/integration/run-tests diff --git a/test/integration/run-tests b/test/integration/run-tests index cb74f21e7..edac07dbf 100755 --- a/test/integration/run-tests +++ b/test/integration/run-tests @@ -1,8 +1,27 @@ #!/bin/sh set -e -local DIR=$(readlink -f $(dirname $0)) +FAIL=0 +DIR=$(readlink -f $(dirname $0)) +if [ "$1" = "-q" ]; then + export MSGLEVEL=2 +elif [ "$1" = "-v" ]; then + export MSGLEVEL=4 +fi for testcase in $(run-parts --list $DIR | grep '/test-'); do - echo "\033[1;32mRun Testcase \033[1;35m$(basename ${testcase})\033[0m" - ${testcase} + if [ "$1" = "-q" ]; then + echo -n "\033[1;32mRun Testcase \033[1;35m$(basename ${testcase})\033[0m" + else + echo "\033[1;32mRun Testcase \033[1;35m$(basename ${testcase})\033[0m" + fi + if ! ${testcase}; then + FAIL=$((FAIL+1)) + echo "$(basename $testcase) ... FAIL" + fi + if [ "$1" = "-q" ]; then + echo + fi done + +echo "failures: $FAIL" +exit $FAIL