snapraid/makecov.sh
2025-08-12 21:36:56 +02:00

17 lines
190 B
Bash
Executable File

#!/bin/sh
#
# Run the Coverage test
#
make distclean
if ! ./configure --enable-coverage --enable-sde; then
exit 1
fi
if ! make lcov_reset check lcov_capture lcov_html; then
exit 1
fi