1
0
mirror of https://github.com/sstephenson/bats.git synced 2026-02-25 09:18:10 +01:00

Suite support for aggregating multiple tests under a single run

This commit is contained in:
Sam Stephenson
2012-11-16 14:25:45 -06:00
parent f8f78b5cd3
commit 19a05cc77d
18 changed files with 120 additions and 7 deletions

45
libexec/bats-exec-suite Executable file
View File

@@ -0,0 +1,45 @@
#!/usr/bin/env bash
set -e
count_only=""
if [ "$1" = "-c" ]; then
count_only=1
shift
fi
trap "kill 0; exit 1" int
count=0
for filename in "$@"; do
count=$(($count + $(bats-exec-test -c "$filename")))
done
if [ -n "$count_only" ]; then
echo "$count"
exit
fi
echo "1..$count"
status=0
offset=0
for filename in "$@"; do
index=0
{
IFS= read -r # 1..n
while IFS= read -r line; do
case "$line" in
"ok "* | "not ok "* )
index=$(($index + 1))
echo "${line/ $index / $(($offset + $index)) }"
[ "${line:0:6}" != "not ok" ] || status=1
;;
* )
echo "$line"
;;
esac
done
} < <( bats-exec-test "$filename" )
offset=$(($offset + $index))
done
exit "$status"