2022-12-16 01:17:08 +00:00
|
|
|
|
#!/usr/bin/env bash
|
2020-07-02 09:34:15 +00:00
|
|
|
|
|
2021-12-09 15:26:46 +00:00
|
|
|
|
set -eu -o pipefail
|
2020-07-02 09:34:15 +00:00
|
|
|
|
|
|
|
|
|
red=""
|
|
|
|
|
green=""
|
|
|
|
|
yellow=""
|
|
|
|
|
normal=""
|
|
|
|
|
|
2022-12-16 01:17:08 +00:00
|
|
|
|
test=$1
|
2023-11-08 05:30:55 +00:00
|
|
|
|
init=${2-}
|
2022-12-16 01:17:08 +00:00
|
|
|
|
|
|
|
|
|
dir="$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
|
source "$dir/common-test.sh"
|
|
|
|
|
|
|
|
|
|
post_run_msg="ran test $test..."
|
2020-07-02 09:34:15 +00:00
|
|
|
|
if [ -t 1 ]; then
|
|
|
|
|
red="[31;1m"
|
|
|
|
|
green="[32;1m"
|
|
|
|
|
yellow="[33;1m"
|
|
|
|
|
normal="[m"
|
|
|
|
|
fi
|
2022-03-01 13:59:12 +00:00
|
|
|
|
|
|
|
|
|
run_test () {
|
2023-11-08 05:30:55 +00:00
|
|
|
|
if [ -n "$init" ]; then
|
|
|
|
|
(init_test 2>/dev/null > /dev/null)
|
|
|
|
|
fi
|
2021-12-09 15:26:46 +00:00
|
|
|
|
log="$(run_test_proper 2>&1)" && status=0 || status=$?
|
2022-03-01 13:59:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-16 01:17:08 +00:00
|
|
|
|
run_test
|
2022-03-01 13:59:12 +00:00
|
|
|
|
|
2020-07-02 09:34:15 +00:00
|
|
|
|
if [ $status -eq 0 ]; then
|
|
|
|
|
echo "$post_run_msg [${green}PASS$normal]"
|
|
|
|
|
elif [ $status -eq 99 ]; then
|
|
|
|
|
echo "$post_run_msg [${yellow}SKIP$normal]"
|
|
|
|
|
else
|
|
|
|
|
echo "$post_run_msg [${red}FAIL$normal]"
|
|
|
|
|
echo "$log" | sed 's/^/ /'
|
|
|
|
|
exit "$status"
|
|
|
|
|
fi
|