Skip to content

Commit 0f2b186

Browse files
author
pfeatherstone
committed
oops
1 parent 03cc2a1 commit 0f2b186

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/coverage.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@ jobs:
3131
3232
- name: Extract corpus
3333
run: |
34+
tar -zxvf examples/fuzz/seeds.tgz
3435
3536
- name: Run fuzzers
3637
run: |
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
3840
3941
- name: Generate coverage report
4042
run: |
4143
llvm-profdata merge -sparse default.profraw -o default.profdata
42-
llvm-cov show ./build/RelWithDebInfo/request_parser \
44+
llvm-cov show ./build/request_parser \
4345
-instr-profile=default.profdata \
4446
-format=html \
4547
-output-dir=coverage-report

0 commit comments

Comments
 (0)