[Lldb-commits] [lldb] [LLDB][ProcessELFCore] Add Description to ProcessELFCore/ELFThread stop reasons (PR #110065)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 1 13:22:26 PDT 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {darker}-->
:warning: Python code formatter, darker found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
darker --check --diff -r c71bfc59ee1cec32d56a82476461e242398f82ca...f173ea4f7a2cd3fbbb8621b74266063706806fd8 lldb/test/API/linux/aarch64/mte_core_file/TestAArch64LinuxMTEMemoryTagCoreFile.py lldb/test/API/linux/aarch64/non_address_bit_memory_access/TestAArch64LinuxNonAddressBitMemoryAccess.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- non_address_bit_memory_access/TestAArch64LinuxNonAddressBitMemoryAccess.py 2024-10-01 20:18:19.000000 +0000
+++ non_address_bit_memory_access/TestAArch64LinuxNonAddressBitMemoryAccess.py 2024-10-01 20:21:54.336627 +0000
@@ -197,11 +197,17 @@
@skipIfLLVMTargetMissing("AArch64")
def test_non_address_bit_memory_corefile(self):
self.runCmd("target create --core corefile")
- self.expect("thread list", substrs=["stopped", "stop reason = SIGSEGV: address not mapped to object (fault address: 0x0)"])
+ self.expect(
+ "thread list",
+ substrs=[
+ "stopped",
+ "stop reason = SIGSEGV: address not mapped to object (fault address: 0x0)",
+ ],
+ )
# No caching (the program/corefile are the cache) and no writing
# to memory. So just check that tagged/untagged addresses read
# the same location.
``````````
</details>
https://github.com/llvm/llvm-project/pull/110065
More information about the lldb-commits
mailing list