Author: Jason Molenda Date: 2025-10-10T13:50:45-07:00 New Revision: 190886ddc99b81f7efebec3ab128809be19c0cd7
URL: https://github.com/llvm/llvm-project/commit/190886ddc99b81f7efebec3ab128809be19c0cd7 DIFF: https://github.com/llvm/llvm-project/commit/190886ddc99b81f7efebec3ab128809be19c0cd7.diff LOG: [lldb][NFC] enable unwind logging in TestCortexMExceptionUnwind Still seeing a failure on a CI bot with this test that I cannot reproduce locally, but luckily this one CI bot is giving me trace output from the tests. Turn on the unwind log when tracing is enabled, migth get a better hint what's up with this test fail. Added: Modified: lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py Removed: ################################################################################ diff --git a/lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py b/lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py index ebba4d1fbcb05..10cbd26328f4d 100644 --- a/lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py +++ b/lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py @@ -28,6 +28,9 @@ def test_no_fpu(self): core = self.getBuildArtifact("core") self.yaml2macho_core("armv7m-nofpu-exception.yaml", core, exe_uuid) + if self.TraceOn(): + self.runCmd("log enable lldb unwind") + process = target.LoadCore(core) self.assertTrue(process.IsValid()) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
