Fuzzing enhancements: clean up README and add CI job#1322
Merged
benalleng merged 2 commits intopayjoin:masterfrom Feb 10, 2026
Merged
Fuzzing enhancements: clean up README and add CI job#1322benalleng merged 2 commits intopayjoin:masterfrom
benalleng merged 2 commits intopayjoin:masterfrom
Conversation
Collaborator
Pull Request Test Coverage Report for Build 21854898035Details
💛 - Coveralls |
d0fa749 to
f25f51b
Compare
Remove references to multi-engine support (afl, honggfuzz) that were part of the original fuzzing PR payjoin#1153 but removed in the minimal fuzzer PR payjoin#1310. The current implementation only supports cargo-fuzz (libFuzzer). Changes: - Remove engine selection syntax from usage examples - Add explicit link to cargo-fuzz repository - Fix typos (morhped, resepctively)
Add a Fuzz job to the CI workflow that builds the fuzz crate on pull requests. This catches compilation errors without spending CI cycles on actual fuzzing (which provides minimal value in short PR runs). For reference, rust-bitcoin uses a similar approach: PRs only build, while a separate cron-daily-fuzz.yml runs targets for ~1 hour each. Closes payjoin#1313
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
For reference, rust-bitcoin uses a similar approach: PRs only build the fuzz crate, while a separate daily cron job runs each target for ~1 hour.
Closes #1313
Partial progress on #1314 (README cleanup done; engine exploration and daily fuzz cron are future work)
Test plan