This repository has been archived on 2026-04-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bhlib/util/coverage.sh

10 lines
153 B
Bash
Executable File

#!/bin/bash
rm -rf build
cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCOVERAGE=1
cmake --build build
pushd build
ctest -T test
ctest -T coverage
popd