Displaying 2 results from an estimated 2 matches for "ubsan_report".
Did you mean:
tsan_report
2020 Oct 07
4
[RFC] Tooling for parsing and symbolication of Sanitizer reports
...ls.
This would require the user to explicitly communicate the report type
ahead of time. Command line invocation would look something like:
```
llvm-xsan asan parse < asan_report.txt > asan_report.json
llvm-xsan tsan parse < tsan_report.txt > tsan_report.json
llvm-xsan ubsan parse < ubsan_report.txt > ubsan_report.json
```
The structured data format would be JSON. The schema details still
need to be worked out but the schema will need to cover every type of
issue that a Sanitizer can find.
## Symbolication tool
Sanitizer reports include detailed stack traces which show the program
co...
2020 Oct 07
4
[RFC] Tooling for parsing and symbolication of Sanitizer reports
...cate the report type
>> ahead of time. Command line invocation would look something like:
>>
>> ```
>> llvm-xsan asan parse < asan_report.txt > asan_report.json
>> llvm-xsan tsan parse < tsan_report.txt > tsan_report.json
>> llvm-xsan ubsan parse < ubsan_report.txt > ubsan_report.json
>> ```
>>
>> The structured data format would be JSON. The schema details still
>> need to be worked out but the schema will need to cover every type of
>> issue that a Sanitizer can find.
>>
>> ## Symbolication tool
>>
>...