Skip to content

Commit ef2eaf7

Browse files
authored
Merge pull request #1487 from rust-lang/bencher-not-counted
Handle `<not counted>` `perf` output
2 parents 86b06a6 + 290f948 commit ef2eaf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/src/execute/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ fn process_stat_output(
588588
let name = get!(parts.next());
589589
let _time = get!(parts.next());
590590
let pct = get!(parts.next());
591-
if cnt == "<not supported>" || cnt.len() == 0 {
591+
if cnt == "<not supported>" || cnt == "<not counted>" || cnt.len() == 0 {
592592
continue;
593593
}
594594
if !pct.starts_with("100.") {

0 commit comments

Comments
 (0)