aboutsummaryrefslogtreecommitdiff
path: root/tests/run-all.sh
blob: dc07015b4f8d76c89caf9080c0e071adfb41a3e8 (plain)
1
2
3
4
5
6
7
#!/bin/sh
# Run all tests
set -e

for T in $(find "$(dirname "$0")" -name test.sh -type f -executable); do
	timeout -k 120 60 "$T" "$@"
done