mirror of https://github.com/google/oss-fuzz.git
[infra] don't try to run .dict or .options files.
This commit is contained in:
parent
55017ab56b
commit
13d28b8f19
|
@ -93,6 +93,9 @@ def call(body) {
|
|||
def files = findFiles()
|
||||
for (int j = 0; j < files.size(); j++) {
|
||||
def file = files[j]
|
||||
if (file.endsWith('.dict') || file.endsWith('.options')) {
|
||||
continue
|
||||
}
|
||||
echo "FILE: $file"
|
||||
sh "docker run -v $d:/out -t ossfuzz/libfuzzer-runner /out/$file -runs=1"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue