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
./configure --prefix=/usr/ CFLAGS="-coverage"
make
make install
# run some tests ...cd cobj
gcov -bc cobj-codegen
cat codegen.c.gcov
lcov使い方メモ
./configure --prefix=/usr/ CFLAGS="-coverage"
make
make install
# run some tests ...cd cobj
gcov -bc cobj-codegen
cat codegen.c.gcov
cd cobj
mkdir -p html
lcov -c -d . -o sample.info
genhtml -o html sample.info
We should measure code coverage of both cobj/ and libcobj/.
The text was updated successfully, but these errors were encountered: