diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2019-06-30 05:54:43 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2019-06-30 05:54:42 (GMT) |
commit | 5cbbbd73a6acb6f96f5d6646aa7498d3dfb1706d (patch) | |
tree | d8d1f58554630a3a4b5609ce50b7b17ee8d76b7f /Lib | |
parent | eb97b9211e7c99841d6cae8c63893b3525d5a401 (diff) | |
download | cpython-5cbbbd73a6acb6f96f5d6646aa7498d3dfb1706d.zip cpython-5cbbbd73a6acb6f96f5d6646aa7498d3dfb1706d.tar.gz cpython-5cbbbd73a6acb6f96f5d6646aa7498d3dfb1706d.tar.bz2 |
bpo-29505: Add more fuzzing for re.compile, re.load and csv.reader (GH-14255)
Add more fuzz testing for re.compile, re.load and csv.reader
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_xxtestfuzz.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_xxtestfuzz.py b/Lib/test/test_xxtestfuzz.py index 532f5fe..15924aa 100644 --- a/Lib/test/test_xxtestfuzz.py +++ b/Lib/test/test_xxtestfuzz.py @@ -16,6 +16,8 @@ class TestFuzzer(unittest.TestCase): _xxtestfuzz.run(b" ") _xxtestfuzz.run(b"x") _xxtestfuzz.run(b"1") + _xxtestfuzz.run(b"AAAAAAA") + _xxtestfuzz.run(b"AAAAAA\0") if __name__ == "__main__": |