[Lldb-commits] [lldb] [lldb] Fix Intel PT plugin compile errors (PR #77252)
Nicholas Mosier via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 8 14:17:05 PST 2024
nmosier wrote:
Thanks! That test passes now. Another test was crashing as well, but I fixed that (it was due to `TraceItemStorage.error` not being initialized properly in `DecodedThread::CreateNewTraceItem` when creating an error item.
49 out of 56 tests now pass, with the remaining tests being soft failures (e.g., unexpected output but no crashes, generally due to small differences like
```
"memoryUsage": {
"totalInBytes": "924",
"avgPerItemInBytes": 33
},
```
vs. expected
```
"memoryUsage": {
"totalInBytes": "252",
"avgPerItemInBytes": 9
},
```
https://github.com/llvm/llvm-project/pull/77252
More information about the lldb-commits
mailing list