allocator-test/fuzz: stochastic necromancy test - #387
Merged
nwf merged 2 commits intoDec 20, 2024
Conversation
nwf
force-pushed
the
202412-allocator_test_stochastic_necromancy
branch
from
December 19, 2024 21:55
3b047a6 to
9cb63a9
Compare
Hold on to a random collection of freed pointers (stored before we free them) and, after each round, scan the collection looking for asserted tags. This could happen if an object is prematurely released from quarantine before the revoker gets to the copy here in the collection.
nwf
force-pushed
the
202412-allocator_test_stochastic_necromancy
branch
from
December 19, 2024 22:27
9cb63a9 to
a72c5f3
Compare
Member
Author
|
While in the neighborhood, add a basic preflight test to hopefully catch things like the load barrier or revoker not working or being misconfigured (inspired by the report in #375, even if it isn't the actual problem over there, in the end). |
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.
Hold on to a random collection of freed pointers (stored before we free them) and, after each round, scan the collection looking for asserted tags. This could happen if an object is prematurely released from quarantine before the revoker gets to the copy here in the collection.