#!/bin/sh PROJ_ROOT=$(git rev-parse --show-toplevel) cd $PROJ_ROOT HTML_DIR=build/coverage/html ctest --test-dir build/test -j8 mkdir -p ${HTML_DIR} gcovr --exclude-throw-branches --exclude build/_deps/ --exclude test -r . --html-details ${HTML_DIR}/gcovr_report.html