8000 gh-73691: Increase size limits in _xxtestfuzz by gpshead · Pull Request #99070 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-73691: Increase size limits in _xxtestfuzz #99070

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 3, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
comment typo
  • Loading branch information
gpshead committed Nov 3, 2022
commit c95a5d959db1080c662c7b6157f844130f944cb6
2 changes: 1 addition & 1 deletion Modules/_xxtestfuzz/fuzzer.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ int LLVMFuzzerInitialize(int *argc, char ***argv) {
PyConfig config;
PyConfig_InitPythonConfig(&config);
config.install_signal_handlers = 0;
/* Raise the limit above the default allow exercising larger things
/* Raise the limit above the default allows exercising larger things
* now that we fall back to the _pylong module for large values. */
config.int_max_str_digits = 8086;
PyStatus status;
Expand Down
0