RVBTCC/cov-boot.sh

7 lines
189 B
Bash
Raw Normal View History

2024-12-06 13:13:33 +00:00
mkdir -p cov && cd cov &&
rm *
gcc --coverage -g -O0 ../boot.c
./a.out < ../boot.c > /dev/null
gcov a-boot.c
2024-12-07 06:13:34 +00:00
python3 -m gcovr --html-details --html-theme github.green -o report.html -r ..