X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=tests%2Frun_tests.sh;fp=tests%2Frun_tests.sh;h=0000000000000000000000000000000000000000;hp=570291cbc43d385a03f09d860062f6bb301b6992;hb=75f5c299567bd58f57ce097080b1ca80b150da19;hpb=52965f9002cfe576bb694bfc96cf5a69e07a1e22 diff --git a/tests/run_tests.sh b/tests/run_tests.sh deleted file mode 100755 index 570291c..0000000 --- a/tests/run_tests.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -# Filename: run_tests -# Purpose: run unit tests for grml-autoconfig -# Authors: grml-team (grml.org), (c) Ulrich Dangel -# Bug-Reports: see https://grml.org/bugs/ -# License: This file is licensed under the GPL v2. -################################################################################ - - -GLOBRETVAL=0 - -for FILE in test_*.sh ; do - if [ -x "${FILE}" ] ; then - pretty_name="${FILE##test_}" - pretty_name="${pretty_name/.sh/}" - - echo "Running test for: ${pretty_name}" - - ./"${FILE}" - RETVAL=$? - - [ "$RETVAL" -ne 0 ] && GLOBRETVAL=$RETVAL - fi -done - -exit $GLOBRETVAL - -## END OF FILE ################################################################# -# vim:foldmethod=marker expandtab ai ft=zsh shiftwidth=2