summaryrefslogtreecommitdiff
path: root/test/test
blob: f94451235ed0ab8aeeb18927ec3e91b927990538 (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
#!/usr/bin/env bash
set -e

export BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "${BASEDIR}/test"
. "./driver-lib.bash"

date_stamp="$(date --rfc-3339=ns)"
start="$(date +%s)"

check_env

declare -a tests=()

if [ $# -eq 0 ]; then
    while read file; do
        tests+=("${file}")
    done < <(find tests -type f -name '*.bash' | sort)
else
    tests=("$@")
fi

initialize "${#tests[@]}" "${VERSION}"

for file in "${tests[@]}"; do
    run_test "$(basename "${file}")" "${VERSION}"
done

if report; then
    ret=0
else
    ret=1
fi

echo "(tests run in $(($(date +%s) - start)) seconds)"
exit ${ret}