From fbc31dd5c2808cb32413716d2132734465117c19 Mon Sep 17 00:00:00 2001 From: Simon Resch Date: Wed, 10 Dec 2025 14:06:59 +0100 Subject: [PATCH] chore: reduce number of executions in selffuzz test ... otherwise the ArgumentsMutatorFuzzTest can timeout on Windows runners. A longer execution of this fuzz test is done as part of a scheduled workflow. --- .../java/com/code_intelligence/selffuzz/mutation/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selffuzz/src/test/java/com/code_intelligence/selffuzz/mutation/BUILD.bazel b/selffuzz/src/test/java/com/code_intelligence/selffuzz/mutation/BUILD.bazel index 298a4026e..46b209ef2 100644 --- a/selffuzz/src/test/java/com/code_intelligence/selffuzz/mutation/BUILD.bazel +++ b/selffuzz/src/test/java/com/code_intelligence/selffuzz/mutation/BUILD.bazel @@ -14,7 +14,7 @@ java_fuzz_target_test( }, fuzzer_args = [ # Make sure that the fuzzer can run. Longer fuzzing runs will be done in a separate GH action. - "-runs=10000", + "-runs=1000", "$(rlocationpaths //selffuzz/src/test/resources:ArgumentsMutatorFuzzTest-corpus)", ], target_class = "com.code_intelligence.selffuzz.mutation.ArgumentsMutatorFuzzTest",