aboutsummaryrefslogtreecommitdiff
path: root/projects/python-lz4
diff options
context:
space:
mode:
authorBitshift <puddles@google.com>2021-08-16 10:56:54 -0500
committerGitHub <noreply@github.com>2021-08-16 08:56:54 -0700
commit55a5812e8c53bf93bbf6000f3e0d0f168d164d1f (patch)
tree5101c2caeb7c435f4cddba5c8198c9e5a98a7dc5 /projects/python-lz4
parent926914100cfde1926ba30c3e3a1b8f305b9b7d03 (diff)
downloadoss-fuzz-55a5812e8c53bf93bbf6000f3e0d0f168d164d1f.tar.gz
Update fuzzers to new Atheris version (#6060)
* Update fuzzers to new Atheris version * Pin new atheris version * Change = to == * Change path where Atheris fuzzers ld_preload from * Update hypothesis fuzzer to work with new atheris * Set version to 2.0.1 * Switch to Atheris 2.0.4 * Correct spelling of pygments_fuzzer decorator * instrument yaml_reader * Change to latest Atheris * Set atheris version to 2.0.6
Diffstat (limited to 'projects/python-lz4')
-rw-r--r--projects/python-lz4/fuzz_lz4.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/projects/python-lz4/fuzz_lz4.py b/projects/python-lz4/fuzz_lz4.py
index ff6787d1b..6a7e21d22 100644
--- a/projects/python-lz4/fuzz_lz4.py
+++ b/projects/python-lz4/fuzz_lz4.py
@@ -15,7 +15,8 @@
import sys
import atheris
-import lz4.frame
+with atheris.instrument_imports():
+ import lz4.frame
def TestOneInput(data):
c =lz4.frame.compress(data)