Skip to content

Commit

Permalink
change oss-fuzz script
Browse files Browse the repository at this point in the history
  • Loading branch information
yawkat committed Dec 18, 2024
1 parent 8b1d63f commit 0f667de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void run() throws IOException {
#!/bin/bash
# LLVMFuzzerTestOneInput <-- for fuzzer detection (see test_all.py)
this_dir=$(dirname "$0")
exec java -cp $this_dir'/libs/*' com.code_intelligence.jazzer.Jazzer %s $@
exec $this_dir/jazzer_driver --agent_path=$this_dir/jazzer_agent_deploy.jar --cp=$this_dir'/libs/*' %s $@
""".formatted(String.join(" ", args));
Path targetPath = getOutputDirectory().file(targetClass).get().getAsFile().toPath();
Files.writeString(targetPath, sh);
Expand Down

0 comments on commit 0f667de

Please sign in to comment.