mirror of https://github.com/google/oss-fuzz.git
Ignore the AttrValues fuzzer for tensorflow (#4852)
Fix the build breakage caused by the AttrValues fuzzer in OSS. The target requires large artifacts to link against which are not optimal for OSS fuzzing.
This commit is contained in:
parent
963832587c
commit
825bbd8e1b
|
@ -47,7 +47,8 @@ fi
|
|||
|
||||
# Determine all fuzz targets. To control what gets fuzzed with OSSFuzz, all
|
||||
# supported fuzzers are in `//tensorflow/security/fuzzing`.
|
||||
declare -r FUZZERS=$(bazel query 'tests(//tensorflow/security/fuzzing/...)' | grep -v identity)
|
||||
# Ignore the identity and AttrValues fuzzer in opensource.
|
||||
declare -r FUZZERS=$(bazel query 'tests(//tensorflow/security/fuzzing/...)' | grep -v identity | grep -v AttrValues)
|
||||
|
||||
# Build the fuzzer targets.
|
||||
# Pass in `--config=libc++` to link against libc++.
|
||||
|
|
Loading…
Reference in New Issue