summaryrefslogtreecommitdiffstats
path: root/test/runTest
blob: 24c6c31c9b2ab146fa7e1ffd30eaceaae1163c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

. "$(dirname ${BASH_SOURCE[0]})/lib/common.inc"

if (($#>0)); then
	tests=("$@")
else
	tests=("$(dirname ${BASH_SOURCE[0]})/test.d/"*.sh)
fi

for t in "${tests[@]}"; do
	l=$(basename ${t} .sh)
	if [ -x ${t} ]; then
		msg "Running test '${l}'"
		${t}
		[ $? -ne 0 ] && die "Test '${l}' failed"
		echo -e "\n\n\n"
	else
		warning "Skipping test ${l}"
	fi
done