File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ total.coverage/
123
123
fuzz.coverage /
124
124
coverage_percent.txt
125
125
/cov_tool_wrapper.sh
126
+ qa-assets /
126
127
127
128
# build tests
128
129
linux-coverage-build
Original file line number Diff line number Diff line change @@ -171,6 +171,8 @@ LCOV_FILTER_PATTERN = \
171
171
-p "src/secp256k1" \
172
172
-p "depends"
173
173
174
+ DIR_FUZZ_SEED_CORPUS ?= qa-assets/fuzz_seed_corpus
175
+
174
176
$(COV_TOOL_WRAPPER ) :
175
177
@echo ' exec $(COV_TOOL) "$$@"' > $(COV_TOOL_WRAPPER )
176
178
@chmod +x $(COV_TOOL_WRAPPER )
@@ -183,7 +185,7 @@ baseline_filtered.info: baseline.info
183
185
$(LCOV ) -a $@ $(LCOV_OPTS ) -o $@
184
186
185
187
fuzz.info : baseline_filtered.info
186
- @TIMEOUT=15 test/fuzz/test_runner.py qa-assets/fuzz_seed_corpus -l DEBUG
188
+ @TIMEOUT=15 test/fuzz/test_runner.py $( DIR_FUZZ_SEED_CORPUS ) -l DEBUG
187
189
$(LCOV ) -c $(LCOV_OPTS ) -d $(abs_builddir ) /src --t fuzz-tests -o $@
188
190
$(LCOV ) -z $(LCOV_OPTS ) -d $(abs_builddir ) /src
189
191
You can’t perform that action at this time.
0 commit comments