blob: b9c1ec30945ee69524e43c87c0c20370e6eb35ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
DIR=$(dirname $(readlink -f $0))
# Let's go into triehash.pl's dir
cd $(dirname "$DIR")
rm -rf cover_db
count=$(cd "$DIR" && echo test-* | wc -w)
i=1
for test in $DIR/test-*; do
echo "[$i/$count] Running testcase $test"
if ! $test > test.summary 2>&1; then
cat test.summary
exit 1
fi
i=$((i + 1))
done
cover
|