aboutsummaryrefslogtreecommitdiff
path: root/examples/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'examples/BUILD.bazel')
-rw-r--r--examples/BUILD.bazel20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/BUILD.bazel b/examples/BUILD.bazel
index 06f0d2a0..7f65a15b 100644
--- a/examples/BUILD.bazel
+++ b/examples/BUILD.bazel
@@ -103,6 +103,26 @@ java_fuzz_target_test(
)
java_fuzz_target_test(
+ name = "Log4jFuzzer",
+ timeout = "long",
+ srcs = [
+ "src/main/java/com/example/Log4jFuzzer.java",
+ ],
+ fuzzer_args = [
+ "-fork=4",
+ "-use_value_profile=1",
+ ],
+ # Finding this bug takes ~5 minutes on a decent laptop, but the GitHub Actions machines are not
+ # powerful enough to run it as part of our test suite.
+ tags = ["manual"],
+ target_class = "com.example.Log4jFuzzer",
+ deps = [
+ "@maven//:org_apache_logging_log4j_log4j_api",
+ "@maven//:org_apache_logging_log4j_log4j_core",
+ ],
+)
+
+java_fuzz_target_test(
name = "JpegImageParserFuzzer",
srcs = [
"src/main/java/com/example/JpegImageParserFuzzer.java",