File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -108,12 +108,16 @@ index d9077510f..5baa138a6 100755
108108 fi
109109
110110 mkdir -p $SRC/inspector
111- @@ -336,7 +359,7 @@ if [ "$SANITIZER" = "introspector" ]; then
111+ @@ -335,6 +358,12 @@ if [ "$SANITIZER" = "introspector" ]; then
112+ REPORT_ARGS="$REPORT_ARGS --language=jvm"
112113 python3 /fuzz-introspector/src/main.py report $REPORT_ARGS
113114 cp -rf $SRC/inspector $OUT/inspector
115+ + elif [ "$FUZZING_LANGUAGE" = "rust" ]; then
116+ + echo "GOING rust route"
117+ + REPORT_ARGS="$REPORT_ARGS --target_dir=$SRC/inspector"
118+ + REPORT_ARGS="$REPORT_ARGS --language=rust"
119+ + python3 /fuzz-introspector/src/main.py report $REPORT_ARGS
120+ + cp -rf $SRC/inspector $OUT/inspector
114121 else
115- - # C/C++
116- + # C/C++/Rust
122+ # C/C++
117123
118- # Correlate fuzzer binaries to fuzz-introspector's raw data
119- python3 /fuzz-introspector/src/main.py correlate --binaries_dir=$OUT/
You can’t perform that action at this time.
0 commit comments