7 lines
211 B
Bash
7 lines
211 B
Bash
mkdir -p cov && cd cov &&
|
|
rm *
|
|
gcc --coverage -g -O0 ../boot.c -o boot.elf
|
|
./boot.elf < ../boot.c > /dev/null
|
|
gcov boot.elf-boot.c
|
|
python3 -m gcovr --html-details --html-theme github.green -o report.html -r ..
|