Skip to content

Commit 190886d

Browse files
committed
[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.
1 parent 3af43e3 commit 190886d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ def test_no_fpu(self):
2828
core = self.getBuildArtifact("core")
2929
self.yaml2macho_core("armv7m-nofpu-exception.yaml", core, exe_uuid)
3030

31+
if self.TraceOn():
32+
self.runCmd("log enable lldb unwind")
33+
3134
process = target.LoadCore(core)
3235
self.assertTrue(process.IsValid())
3336

0 commit comments

Comments
 (0)