8c99e2b7ad
end of the build (and fail then).
12 lines
194 B
Bash
Executable file
12 lines
194 B
Bash
Executable file
#!/bin/sh
|
|
failed=$(find "$@" ! -size 0)
|
|
echo ""
|
|
echo "$(echo $failed | wc -w) failed tests"
|
|
echo ""
|
|
for a in $failed; do
|
|
echo "**** $a"
|
|
cat $a
|
|
echo ""
|
|
done
|
|
exec test "$failed" == ""
|