Skip to content

Commit fbb78af

Browse files
committed
chore: more robust self-fuzzing
1 parent dd9416b commit fbb78af

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/fuzzing.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
name: Fuzzing
2020
strategy:
21+
fail-fast: false
2122
matrix:
2223
os: [ubuntu-22.04, macos-14]
2324
jdk: [21, 8]

selffuzz/src/test/java/com/code_intelligence/selffuzz/mutation/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ java_fuzz_target_test(
1111
],
1212
data = ["//selffuzz/src/test/resources:ArgumentsMutatorFuzzTest-corpus"],
1313
env = {
14-
"_JAVA_OPTIONS": "-Xmx2048m",
14+
"_JAVA_OPTIONS": "-Xmx4096m",
1515
},
1616
fuzzer_args = [
1717
# Make sure that the fuzzer can run. Longer fuzzing runs will be done in a separate GH action.

0 commit comments

Comments
 (0)