diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2023-09-26 22:35:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 22:35:49 (GMT) |
commit | a829356f86d597e4dfe92e236a6d711c8a464f16 (patch) | |
tree | af1775fa0e1d15cbaf573024c94da731be93592b /Tools/c-analyzer/cpython | |
parent | 9dbfe2dc8e7bba25e52f9470ae6969821a365297 (diff) | |
download | cpython-a829356f86d597e4dfe92e236a6d711c8a464f16.zip cpython-a829356f86d597e4dfe92e236a6d711c8a464f16.tar.gz cpython-a829356f86d597e4dfe92e236a6d711c8a464f16.tar.bz2 |
gh-109098: Fuzz re module instead of internal sre (#109911)
* gh-109098: Fuzz re module instead of internal sre
* Fix c-analyzer globals test failure
* Put globals exception in ignored.tsv
Diffstat (limited to 'Tools/c-analyzer/cpython')
-rw-r--r-- | Tools/c-analyzer/cpython/ignored.tsv | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/c-analyzer/cpython/ignored.tsv b/Tools/c-analyzer/cpython/ignored.tsv index 336b028..1f39870 100644 --- a/Tools/c-analyzer/cpython/ignored.tsv +++ b/Tools/c-analyzer/cpython/ignored.tsv @@ -580,15 +580,15 @@ Modules/_testmultiphase.c - uninitialized_def - Modules/_testsinglephase.c - global_state - Modules/_xxtestfuzz/_xxtestfuzz.c - _fuzzmodule - Modules/_xxtestfuzz/_xxtestfuzz.c - module_methods - -Modules/_xxtestfuzz/fuzzer.c - SRE_FLAG_DEBUG - +Modules/_xxtestfuzz/fuzzer.c - RE_FLAG_DEBUG - Modules/_xxtestfuzz/fuzzer.c - ast_literal_eval_method - Modules/_xxtestfuzz/fuzzer.c - compiled_patterns - Modules/_xxtestfuzz/fuzzer.c - csv_error - Modules/_xxtestfuzz/fuzzer.c - csv_module - Modules/_xxtestfuzz/fuzzer.c - json_loads_method - Modules/_xxtestfuzz/fuzzer.c - regex_patterns - -Modules/_xxtestfuzz/fuzzer.c - sre_compile_method - -Modules/_xxtestfuzz/fuzzer.c - sre_error_exception - +Modules/_xxtestfuzz/fuzzer.c - re_compile_method - +Modules/_xxtestfuzz/fuzzer.c - re_error_exception - Modules/_xxtestfuzz/fuzzer.c - struct_error - Modules/_xxtestfuzz/fuzzer.c - struct_unpack_method - Modules/_xxtestfuzz/fuzzer.c LLVMFuzzerTestOneInput CSV_READER_INITIALIZED - |