aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/symbolizer/addr2line_test.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/symbolizer: retain the frame if line number is 0Jiao, Joey2025-03-261-0/+15
| | | | | | | | | There are numerous line_entries with a line number of 0 for __sanitizer_cov_trace_pc. Currently, if only one program counter (PC) is hit in the function and the line number is 0 for that PC, the frame is ignored. To accurately report function coverage, we should include the function in such cases.
* pkg/symbolizer: introduce Symbolizer interfaceTaras Madan2025-03-071-0/+196
To simplify interface Read*Symbols were moved out from symbolizer.Symbolizer.