Skip to content

Commit 09b3bb8

Browse files
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
1 parent 6939487 commit 09b3bb8

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ libtool
3333
*~
3434
*.log
3535
*.trs
36+
37+
coverage/
38+
coverage.html
39+
coverage.*.html
40+
*.gcda
41+
*.gcno
42+
*.gcov
43+
3644
src/libsecp256k1-config.h
3745
src/libsecp256k1-config.h.in
3846
src/ecmult_static_context.h

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ To create a report, `gcovr` is recommended, as it includes branch coverage repor
9696

9797
To create a HTML report with coloured and annotated source code:
9898

99-
$ gcovr --exclude 'src/bench*' --html --html-details -o coverage.html
99+
$ mkdir -p coverage
100+
$ gcovr --exclude 'src/bench*' --html --html-details -o coverage/coverage.html
100101

101102
Reporting a vulnerability
102103
------------

obj/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)