mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
Many areas of the dovecot library are tested via chamuyero scripts, but these were not being included in the coverage report. This patch extends the dovecot-auth-cli tests so that they are now coverage-aware.
29 lines
657 B
Bash
Executable File
29 lines
657 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
. $(dirname ${0})/../../test/util/lib.sh
|
|
|
|
init
|
|
|
|
# Build the binary once, so we can use it and launch it in chamuyero scripts.
|
|
# Otherwise, we not only spend time rebuilding it over and over, but also "go
|
|
# run" masks the exit code, which is something we care about.
|
|
if [ "${COVER_DIR}" != "" ]; then
|
|
go test -covermode=count -coverpkg=../../... -c \
|
|
$GOFLAGS -tags="coveragebin $GOTAGS"
|
|
cp coverage_wrapper dovecot-auth-cli
|
|
else
|
|
go build $GOFLAGS -tags="$GOTAGS" dovecot-auth-cli.go
|
|
fi
|
|
|
|
for i in *.cmy; do
|
|
if ! chamuyero $i > $i.log 2>&1 ; then
|
|
echo "# Test $i failed, log follows"
|
|
cat $i.log
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
success
|
|
exit 0
|