Skip to content

Commit

Permalink
tests: Increase timeout of memory leak regression tests
Browse files Browse the repository at this point in the history
These tests frequently timeout on macOS runner before reaching the runs
limit.
  • Loading branch information
fmeum committed Dec 12, 2022
1 parent 1b33892 commit ebc4d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ java_fuzz_target_test(
# Regression test for https://github.com/CodeIntelligenceTesting/jazzer/issues/405.
java_fuzz_target_test(
name = "MemoryLeakFuzzer",
timeout = "short",
timeout = "moderate",
srcs = ["src/test/java/com/example/MemoryLeakFuzzer.java"],
allowed_findings = ["com.code_intelligence.jazzer.api.FuzzerSecurityIssueLow"],
env = {
Expand Down Expand Up @@ -185,7 +185,7 @@ java_fuzz_target_test(

java_fuzz_target_test(
name = "BytesMemoryLeakFuzzer",
timeout = "short",
timeout = "moderate",
srcs = ["src/test/java/com/example/BytesMemoryLeakFuzzer.java"],
env = {
"JAVA_OPTS": "-Xmx200m",
Expand Down

0 comments on commit ebc4d19

Please sign in to comment.