module Slather::CoverageService::LlvmCovOutput
Public Instance Methods
post()
click to toggle source
# File lib/slather/coverage_service/llvm_cov_output.rb, line 17 def post report = coverage_files.map do |file| ["#{file.source_file_pathname.realpath}:", file.source_data, ""] end.flatten.join("\n") store_report(report) end
store_report(report)
click to toggle source
# File lib/slather/coverage_service/llvm_cov_output.rb, line 25 def store_report(report) output_file = 'report.llcov' if output_directory FileUtils.mkdir_p(output_directory) output_file = File.join(output_directory, output_file) end File.write(output_file, report.to_s) end
Private Instance Methods
coverage_file_class()
click to toggle source
# File lib/slather/coverage_service/llvm_cov_output.rb, line 8 def coverage_file_class if input_format == "profdata" Slather::ProfdataCoverageFile else raise StandardError, "Only profdata input format supported by llvm-cov show." end end