Skip to content

Commit

Permalink
Don't cutoff summaries anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
RReverser committed Sep 9, 2024
1 parent 53e1c3d commit e67c75d
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -583,15 +583,9 @@ mod test_utils {
}
.trim_ascii_end();

match line {
// Skip empty lines.
"" => continue,
// Stop on summary headers.
"Conformance test has finished"
| "Information Message Summary"
| "Issue Summary" => break,
// Handle everything else.
_ => {}
// Skip empty lines.
if line.is_empty() {
continue;
}

if parse_log_line(line, kind).is_none() {
Expand Down

0 comments on commit e67c75d

Please sign in to comment.