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.
8 lines
207 B
Bash
Executable File
8 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Wrapper for dovecot-auth-cli to run when we build it in coverage mode.
|
|
|
|
exec ./dovecot-auth-cli.test -test.run ^TestRunMain$ \
|
|
-test.coverprofile="$COVER_DIR/test-`date +%s.%N`.out" \
|
|
"$@"
|