Skip to content

Commit

Permalink
Add marker for coverage results
Browse files Browse the repository at this point in the history
  • Loading branch information
adpaco-aws committed Feb 21, 2024
1 parent fe3ebeb commit 3b713bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kani-driver/src/cbmc_property_renderer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ fn format_result_new_coverage(properties: &[Property]) -> String {
let function = demangle(&captures["func_name"]);
let counter_num = &captures["counter_num"];
let status = prop.status;
let new_str = format!("{function}, {counter_num}, {status}\n");
let new_str = format!("### {function}, {counter_num}, {status}\n");
formatted_output.push_str(&new_str);
// let file_entries = coverage_results.entry(|v| v.push().or_default();
// let check_status = if prop.status == CheckStatus::Covered {
Expand Down

0 comments on commit 3b713bc

Please sign in to comment.