We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03cc2a1 commit 0f2b186Copy full SHA for 0f2b186
.github/workflows/coverage.yml
@@ -31,15 +31,17 @@ jobs:
31
32
- name: Extract corpus
33
run: |
34
+ tar -zxvf examples/fuzz/seeds.tgz
35
36
- name: Run fuzzers
37
- ./build/RelWithDebInfo/request_parser /tmp/corpus/ examples/fuzz/seeds/request_parser/ -max_total_time=30
38
+ mkdir -p /tmp/corpus
39
+ ./build/request_parser /tmp/corpus/ seeds/request_parser/ -max_total_time=30
40
41
- name: Generate coverage report
42
43
llvm-profdata merge -sparse default.profraw -o default.profdata
- llvm-cov show ./build/RelWithDebInfo/request_parser \
44
+ llvm-cov show ./build/request_parser \
45
-instr-profile=default.profdata \
46
-format=html \
47
-output-dir=coverage-report
0 commit comments