Add failure persistence support for regression testing#215
Merged
BowTiedRadone merged 28 commits intostacks-network:masterfrom Feb 13, 2026
Merged
Add failure persistence support for regression testing#215BowTiedRadone merged 28 commits intostacks-network:masterfrom
BowTiedRadone merged 28 commits intostacks-network:masterfrom
Conversation
97dbfad to
0fa8979
Compare
65ce54d to
ea642ea
Compare
… with `property.ts`
Contributor
Author
|
Since |
wileyj
reviewed
Jan 8, 2026
moodmosaic
reviewed
Jan 12, 2026
Contributor
Author
|
@moodmosaic Happy to hear any other thoughts on this PR! |
wileyj
approved these changes
Feb 12, 2026
Collaborator
|
Massive work 🙌 |
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.
This PR implements failure persistence and regression testing for Rendezvous. When tests fail, the failing seeds and configuration used are now automatically saved to
.rendezvous-regressions/, allowing users to replay them on subsequent runs to prevent regressions.Key additions
--regrCLI flag to control test execution: if present, run only the regression testsSample failure file
.rendezvous-regressions/ST1PQHQKV0RJXZFY1DGX8MNSNYVE3VGZJSRTPGZGM.counter.json:{ "invariant": [ { "seed": 901717247, "dial": "example/sip010.cjs", "numRuns": 15, "timestamp": 1767886534833 }, { "seed": -1374686468, "numRuns": 9, "timestamp": 1767886531457 }, { "seed": 1298457354, "dial": "example/sip010.cjs", "numRuns": 20, "timestamp": 1767883389583 }, ], "test": [ { "seed": 1656313995, "numRuns": 6, "timestamp": 1767886553125 }, { "seed": 64830639, "numRuns": 11, "timestamp": 1767886546477 }, { "seed": 1593583466, "numRuns": 3, "timestamp": 1767886542907 }, ] }This brings Rendezvous closer to production-grade fuzzing by ensuring discovered bugs stay caught, while improving internal code organization and maintainability.
Closes #130.