blob: 5caa6f08cac1d358701ae381c57c51fb12ea65f2 (
plain)
1
2
3
4
5
|
#!/bin/sh
ctest --test-dir build/test -j8
mkdir -p build/html
gcovr --exclude-throw-branches --exclude build/_deps/ --exclude test -r source . --html-details build/html/gcovr_report.html
|