File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,22 @@ java_test_suite(
1919 env = {
2020 # Also use the generated corpus directory when regression testing.
2121 "JAZZER_COVERAGE" : "1" ,
22+ # Continue fuzzing until 10 unique (deduplicated) crashes are found.
23+ # Same as "-Djazzer.keep_going=10" jvm_flag below
24+ # "JAZZER_KEEP_GOING": "10",
2225 },
26+ jvm_flags = [
27+ "-Djazzer.keep_going=10" , # Continue fuzzing until 10 unique (deduplicated) crashes are found.
28+ # "-Djazzer.internal.basedir=$${PWD}", # In case we want to change Jazzer's basedir
29+
30+ # Arguments to libFuzzer (active only in fuzzing mode). Have to be numbered starting from 0.
31+ "-Djazzer.internal.arg.0=ignored" , # Placeholder for the target class name. Must be present. Value is ignored.
32+ "-Djazzer.internal.arg.1=-print_final_stats=1" , # Prints libFuzzer stats when the process is terminated.
33+ # "-Djazzer.internal.arg.2=-help=1", # Prints all arguments supported by libFuzzer and exits.
34+
35+ # Disable regex sanitizers during fuzzing and regression.
36+ "-Djazzer.disabled_hooks=com.code_intelligence.jazzer.sanitizers.RegexRoadblocks:com.code_intelligence.jazzer.sanitizers.RegexInjection" ,
37+ ],
2338 # Resources to be bundled into the test Jar. Only used when regression testing with Jazzer.
2439 resources = glob (
2540 [
You can’t perform that action at this time.
0 commit comments