RVBTCC/cov-boot.sh

7 lines
211 B
Bash
Raw Permalink Normal View History

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