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:
Amit Patankar 2020-12-15 15:23:07 -08:00 committed by GitHub
parent 963832587c
commit 825bbd8e1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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++.