1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#! /bin/sh -e
# tup - A file-based build system
#
# Copyright (C) 2010-2024 Mike Shal <marfey@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# Use as:
# To run a single test: ./test.sh t0000-init.sh
# To run all tests: ./test.sh
# To run all tests without stopping on errors: ./test.sh --keep-going
#
# You can also invoke a test case directly (as in: ./t0000-init.sh), but if it
# fails you may not always get an error message. You can still tell if the test
# failed by checking the return code (non-zero), and the tuptesttmp directory
# for that test will remain for manual inspection.
keep_going=0
while [ $# -gt 0 ]; do
if [ "$1" = "-k" ]; then
keep_going=1
elif [ "$1" = "--keep-going" ]; then
keep_going=1
else
files="$files $1"
fi
shift
done
if [ "$files" = "" ]; then
files="t[0-9]*.sh"
fi
export tupos=`uname -s`
n_failed=0
fail_text=""
for i in $files; do
echo "[36m --- Run $i --- [0m"
if sh -e $i; then
:
else
echo "[31m *** $i failed[0m" >&2
if [ "$keep_going" = "0" ]; then
exit 1
fi
n_failed=`expr $n_failed + 1`
fail_text="$fail_text *** $i failed\n"
fi
done
if [ $n_failed -ne 0 ]; then
echo ""
echo "Summary of failed tests:" 1>&2
printf "$fail_text" 1>&2
exit 1
fi
|