6d24613b0b
This patch makes the tests (including the test driver) run entirely inside Vagrant, which avoids calling the very slow `vagrant` driver many times for running the tests. On my machine, `./test` runs in 22 seconds, down from hundreds of seconds prior to this patch. This also has the nice side effect of matching how the Travis CI tests were run, so there's no need for a separate `test_travis` anymore.
36 lines
618 B
Bash
Executable file
36 lines
618 B
Bash
Executable file
#!/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}
|