mirror of https://github.com/google/oss-fuzz.git
Don't run test_all on llvm-symbolizer for black box fuzzer projects. (#4873)
This commit is contained in:
parent
e01883df1e
commit
01ebe8e15f
|
@ -74,6 +74,8 @@ def find_fuzz_targets(directory, fuzzing_language):
|
||||||
fuzz_targets = []
|
fuzz_targets = []
|
||||||
for filename in os.listdir(directory):
|
for filename in os.listdir(directory):
|
||||||
path = os.path.join(directory, filename)
|
path = os.path.join(directory, filename)
|
||||||
|
if filename == 'llvm-symbolizer':
|
||||||
|
continue
|
||||||
if filename.startswith('afl-'):
|
if filename.startswith('afl-'):
|
||||||
continue
|
continue
|
||||||
if not os.path.isfile(path):
|
if not os.path.isfile(path):
|
||||||
|
|
Loading…
Reference in New Issue