blob: f7467ee0841b96cb691ef9bb879b067dcfa388b5 (
plain)
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
68
|
# ProteanOS Development Kit
# tests/common.sh
# Common testsuite functions
#
# Copyright (C) 2013-2014 Patrick "P. J." McDermott
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.
tests_es=0
atexit()
{
local es=${?}
if [ ${?} -ne 0 ]; then
exit ${?}
else
exit ${tests_es}
fi
}
trap atexit EXIT
in_place=true
builddir='.'
use()
{
local module="${1}"
local dir=
dir='lib'
if [ -f "${dir}/${module}.sm" ]; then
. "${dir}/${module}.sm"
else
printf '%s: Error: Failed to load module "%s": %s\n' \
"${0##*/}" "${module}" 'no such file or directory' >&2
exit 2
fi
}
assert()
{
if ! eval "${@}"; then
warn 'Assertion failed: %s\n' "${*}"
tests_es=1
fi
}
if [ "x${COLOR_TEST_LOGS:-no}" = 'xno' ]; then
red= grn= lgn= blu= mgn= std=
else
red='[0;31m' # Red.
grn='[0;32m' # Green.
lgn='[1;32m' # Light green.
blu='[1;34m' # Blue.
mgn='[0;35m' # Magenta.
std='[m' # No color.
fi
|