26 lines
515 B
Bash
Executable File
26 lines
515 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -rf gcov_working_area
|
|
|
|
mkdir gcov_working_area
|
|
cd gcov_working_area
|
|
|
|
|
|
echo Looking for source code
|
|
find .. -name *.c* > source_files.txt
|
|
find ../../firmware/console/ -name *.c* >> source_files.txt
|
|
find ../../firmware/controllers/ -name *.c* >> source_files.txt
|
|
|
|
wc -l source_files.txt
|
|
|
|
xargs -L 1 -I {} cp {} . < source_files.txt
|
|
|
|
cp ../build/obj/* .
|
|
|
|
gcov *.c* > gcov.log 2>gcov.err
|
|
|
|
|
|
|
|
gcovr --html -o rusefi_unit_tests.html
|
|
ls -l rusefi_unit_tests.html
|