Add the no_oss tag to proto dependent fuzzers to avoid breakages in OSS-Fuzz.

PiperOrigin-RevId: 358064738
Change-Id: I23339bb35c9ae8293e47507977e1834a0e892f8e
This commit is contained in:
Amit Patankar 2021-02-17 17:00:17 -08:00 committed by TensorFlower Gardener
parent 8a37ad24a2
commit 0567523bed
2 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,7 @@ tf_fuzz_target(
tf_fuzz_target(
name = "bfloat16_fuzz",
srcs = ["bfloat16_fuzz.cc"],
tags = ["no_oss"], # b/175698644
deps = [
"//tensorflow/core:test",
"//tensorflow/core/framework:bfloat16",
@ -41,6 +42,7 @@ tf_fuzz_target(
tf_fuzz_target(
name = "AreAttrValuesEqual_fuzz",
srcs = ["AreAttrValuesEqual_fuzz.cc"],
tags = ["no_oss"], # b/175698644
deps = [
"//tensorflow/core/framework:attr_value_proto_cc",
"//tensorflow/core/framework:attr_value_util",
@ -51,6 +53,7 @@ tf_fuzz_target(
tf_fuzz_target(
name = "ParseAttrValue_fuzz",
srcs = ["ParseAttrValue_fuzz.cc"],
tags = ["no_oss"], # b/175698644
deps = [
"//tensorflow/core/framework:attr_value_proto_cc",
"//tensorflow/core/framework:attr_value_util",

View File

@ -31,6 +31,7 @@ cc_library(
tf_fuzz_target(
name = "identity_fuzz",
srcs = ["identity_fuzz.cc"],
tags = ["no_oss"], # b/175698644
deps = [
":fuzz_session",
"//tensorflow/cc:cc_ops",