mirror of https://github.com/google/oss-fuzz.git
[infra] Serve raw JaCoCo coverage reports (#7270)
Both the JaCoCo .exec file and the XML report are very useful for automated analysis of coverage data and IDE integration, so serve them just like the HTML report.
This commit is contained in:
parent
3067d305ee
commit
4261d526ad
|
@ -281,6 +281,11 @@ elif [[ $FUZZING_LANGUAGE == "jvm" ]]; then
|
|||
--classfiles $classes_dir \
|
||||
"${sourcefiles_args[@]}"
|
||||
|
||||
# Also serve the raw exec file and XML report, which can be useful for
|
||||
# automated analysis.
|
||||
cp $jacoco_merged_exec $REPORT_PLATFORM_DIR/jacoco.exec
|
||||
cp $xml_report $REPORT_PLATFORM_DIR/jacoco.xml
|
||||
|
||||
# Write llvm-cov summary file.
|
||||
jacoco_report_converter.py $xml_report $SUMMARY_FILE
|
||||
|
||||
|
|
Loading…
Reference in New Issue