Skip to content

Commit 399722a

Browse files
committedMay 14, 2021
Merge bitcoin#941: Clean up git tree
09b3bb8 Clean up git tree (Tim Ruffing) Pull request description: ACKs for top commit: jonasnick: ACK 09b3bb8 Tree-SHA512: 70db146f4475e9618ecd68cf678d09a351e8da6c4fd4aa937c3f2fa30e3f6a9480ff24ac6301785fc2463bb5f8ff974091f8e9292ae7674ca9632b449a7034d5
2 parents bf0ac46 + 09b3bb8 commit 399722a

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed
 

‎.gitignore

+8
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

+2-1
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)