summaryrefslogtreecommitdiff
path: root/test/integration/run-tests
blob: cb74f21e77c0aac250565ab6808130022d933fdb (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
set -e

local DIR=$(readlink -f $(dirname $0))
for testcase in $(run-parts --list $DIR | grep '/test-'); do
	echo "\033[1;32mRun Testcase \033[1;35m$(basename ${testcase})\033[0m"
	${testcase}
done