gh-153569: add tokenizer validation tools - #156484
Draft
pablogsal wants to merge 20 commits into
Draft
Conversation
| } | ||
|
|
||
| static int | ||
| fuzz_tokenizer(const char *data, size_t size) |
Member
There was a problem hiding this comment.
Please move it to python/library-fuzzers (yes, name is a little misleading). We aren't adding anything to _xxtestfuzz as we are planning to move it all to the repository.
Member
There was a problem hiding this comment.
@pablogsal a little ping FYI, since I see you're working on this.
Member
Author
|
Do not review until #156482 lands. |
# Conflicts: # Python/errors.c
…-153569-tokenizer-offset-state # Conflicts: # Parser/tokenizer/reader.c
…53569-tokenizer-validation-tools
…53569-tokenizer-validation-tools
…-153569-tokenizer-offset-state # Conflicts: # Parser/tokenizer/decoder.c # Parser/tokenizer/reader.c # Parser/tokenizer/reader_internal.h
…53569-tokenizer-validation-tools
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 adds a tokenizer fuzz target that drives the byte, Unicode, and FILE readers, including token text and location lookups. It comes with focused seeds and a tokenizer dictionary, plus a differential runner for parser ASTs, token streams, warnings, errors, and callbacks that return several lines at once. Exact locations are compared by default, with a semantic mode for separating location changes from behavior changes.
This is stacked on #156482 and adds the validation tooling for #153569.