[Lldb-commits] [lldb] d5a4fa0 - Revert "My prevous commit to RegisterContextLLDB is causing a test fail"
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 24 19:03:48 PST 2020
Author: Jason Molenda
Date: 2020-02-24T19:03:22-08:00
New Revision: d5a4fa05146fe290735e2a38adb50d76052c4313
URL: https://github.com/llvm/llvm-project/commit/d5a4fa05146fe290735e2a38adb50d76052c4313
DIFF: https://github.com/llvm/llvm-project/commit/d5a4fa05146fe290735e2a38adb50d76052c4313.diff
LOG: Revert "My prevous commit to RegisterContextLLDB is causing a test fail"
This reverts commit 082f1a3b15999c803265fabcb555ad253a00d477.
Added:
Modified:
lldb/test/API/functionalities/signal/handle-abrt/TestHandleAbort.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/signal/handle-abrt/TestHandleAbort.py b/lldb/test/API/functionalities/signal/handle-abrt/TestHandleAbort.py
index 2a3e4e590a31..5f3eb31c83ae 100644
--- a/lldb/test/API/functionalities/signal/handle-abrt/TestHandleAbort.py
+++ b/lldb/test/API/functionalities/signal/handle-abrt/TestHandleAbort.py
@@ -55,9 +55,6 @@ def test_inferior_handle_sigabrt(self):
# Expect breakpoint in 'handler'
frame = thread.GetFrameAtIndex(0)
self.assertEqual(frame.GetDisplayFunctionName(), "handler", "Unexpected break?")
-
- self.runCmd("log enable lldb unwind")
- self.runCmd("bt")
# Expect that unwinding should find 'abort_caller'
foundFoo = False
@@ -65,7 +62,6 @@ def test_inferior_handle_sigabrt(self):
if frame.GetDisplayFunctionName() == "abort_caller":
foundFoo = True
- self.runCmd("log disable lldb unwind")
self.assertTrue(foundFoo, "Unwinding did not find func that called abort")
# Continue until we exit.
More information about the lldb-commits
mailing list