D | fuzz.py | 7 # This source code is licensed under both the BSD-style license (found in the 10 # You may select, at your option, one of the above-listed licenses. 35 ZSTD = 1 variable in FrameType 40 def __init__(self, input_type, frame_type=FrameType.ZSTD): 77 CFLAGS = os.environ.get('CFLAGS', '-O3') 80 MFLAGS = os.environ.get('MFLAGS', '-j') 84 AFL_FUZZ = os.environ.get('AFL_FUZZ', 'afl-fuzz') 87 ZSTD = os.environ.get('ZSTD', abs_join(FUZZ_DIR, '..', '..', 'zstd')) variable 152 san_flags = ','.join(re.findall('-fsanitize=((?:[a-z]+,?)+)', flags)) 153 nosan_flags = ','.join(re.findall('-fno-sanitize=((?:[a-z]+,?)+)', flags)) [all …]
|