rules_fuzzing
rules_fuzzing copied to clipboard
Supplying arguments to jazzer
How can we supply fuzzer args like -use_value_profile=1 to java_fuzz_test?
The engine-agnostic launcher doesn't support passing through fuzzer-specific flags atm, but in order to run e.g. the target //examples/java:FuzzTest, you could try:
bazel run //examples/java:FuzzTest_bin -- -use_value_profile=1
Note the _bin which exposes the "raw" fuzz target rather.