Clarify compact event dispatch without trigger kind

This commit is contained in:
Jan Petykiewicz 2026-04-19 02:15:50 -07:00
commit 8e59b0f8bc
2 changed files with 18 additions and 0 deletions

View file

@ -9529,6 +9529,12 @@ fn parse_event_runtime_collection_summary_with_tag_width(
"records with grouped opcodes already in the 0x00431b20 dispatch strip = {:?}",
mutation_candidate_record_indexes
));
if records_with_trigger_kind == 0 {
control_lane_notes.push(
"decoded grouped rows already reach the 0x00431b20 dispatch strip in this collection even though the current inspection surface recovered no trigger/control kind bytes for those records"
.to_string(),
);
}
control_lane_notes.push(format!(
"0x00431b20 dispatch-strip opcodes present in decoded grouped rows = {:?}",
mutation_candidate_opcodes
@ -22305,6 +22311,9 @@ mod tests {
"records with grouped opcodes already in the 0x00431b20 dispatch strip = [0]",
)
}));
assert!(summary.control_lane_notes.iter().any(|line| {
line.contains("decoded grouped rows already reach the 0x00431b20 dispatch strip")
}));
assert!(summary.control_lane_notes.iter().any(|line| {
line.contains("0x00431b20 dispatch-strip opcodes present in decoded grouped rows = [4]")
}));