Clean up git tree
This removes the ununsed `obj` directory. It also suggests in the README to create the "coverage" files in a separate directory and adds the coverage files to .gitignore. readme: Improve instructions for coverage reports
This commit is contained in:
parent
69394879b6
commit
09b3bb8648
|
@ -33,6 +33,14 @@ libtool
|
||||||
*~
|
*~
|
||||||
*.log
|
*.log
|
||||||
*.trs
|
*.trs
|
||||||
|
|
||||||
|
coverage/
|
||||||
|
coverage.html
|
||||||
|
coverage.*.html
|
||||||
|
*.gcda
|
||||||
|
*.gcno
|
||||||
|
*.gcov
|
||||||
|
|
||||||
src/libsecp256k1-config.h
|
src/libsecp256k1-config.h
|
||||||
src/libsecp256k1-config.h.in
|
src/libsecp256k1-config.h.in
|
||||||
src/ecmult_static_context.h
|
src/ecmult_static_context.h
|
||||||
|
|
|
@ -96,7 +96,8 @@ To create a report, `gcovr` is recommended, as it includes branch coverage repor
|
||||||
|
|
||||||
To create a HTML report with coloured and annotated source code:
|
To create a HTML report with coloured and annotated source code:
|
||||||
|
|
||||||
$ gcovr --exclude 'src/bench*' --html --html-details -o coverage.html
|
$ mkdir -p coverage
|
||||||
|
$ gcovr --exclude 'src/bench*' --html --html-details -o coverage/coverage.html
|
||||||
|
|
||||||
Reporting a vulnerability
|
Reporting a vulnerability
|
||||||
------------
|
------------
|
||||||
|
|
Loading…
Reference in New Issue