mirror of https://github.com/google/oss-fuzz.git
aiohttp: ensure compiled python runs (#7768)
This commit is contained in:
parent
35d9b115e7
commit
c2c093ddac
|
@ -16,7 +16,10 @@
|
|||
|
||||
import os
|
||||
AIOHTTP_VAL=0
|
||||
os.environ["AIOHTTP_NO_EXTENSIONS"] = str(AIOHTTP_VAL)
|
||||
if AIOHTTP_VAL == 0:
|
||||
os.environ["AIOHTTP_NO_EXTENSIONS"] = ""
|
||||
else:
|
||||
os.environ["AIOHTTP_NO_EXTENSIONS"] = "1"
|
||||
|
||||
import sys
|
||||
import atheris
|
||||
|
|
|
@ -15,7 +15,10 @@
|
|||
|
||||
import os
|
||||
AIOHTTP_VAL=0
|
||||
os.environ["AIOHTTP_NO_EXTENSIONS"] = str(AIOHTTP_VAL)
|
||||
if AIOHTTP_VAL == 0:
|
||||
os.environ["AIOHTTP_NO_EXTENSIONS"] = ""
|
||||
else:
|
||||
os.environ["AIOHTTP_NO_EXTENSIONS"] = "1"
|
||||
|
||||
import sys
|
||||
import atheris
|
||||
|
|
Loading…
Reference in New Issue