You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
make clean
make TRACE=1
gcc -pg -o t-abc tests/s-abc.c
uftrace --no-libcall -a ./uftrace t-abc
Tracing uftrace with uftrace example
How to get code coverage for uftrace
sudo apt install lcov
make clean
make COVERAGE=1
gcc -pg -o t-abc tests/s-abc.c
./uftrace record -L. t-abc
./misc/run-lcov.sh
cd coverage.html
python -m SimpleHTTPServer 18080
# 커버리지 데이터 누적 방지를 위해 reset
make reset-coverage
How to trace uftrace with uftrace
Tracing uftrace with uftrace example
How to get code coverage for uftrace
Coverage Data sample
open index.html
coverage.html.zip
Coverage Data sample screenshot
Find more at:
http://korea.gnu.org/manual/release/gcov/gcov_1.ko.html
The text was updated successfully, but these errors were encountered: