[Lldb-commits] [lldb] 320b29e - Fix a syntax error

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 16 13:04:05 PST 2022


Author: Adrian Prantl
Date: 2022-12-16T13:03:45-08:00
New Revision: 320b29e7ed64c37560c263d4d4eeaa9dad87cb43

URL: https://github.com/llvm/llvm-project/commit/320b29e7ed64c37560c263d4d4eeaa9dad87cb43
DIFF: https://github.com/llvm/llvm-project/commit/320b29e7ed64c37560c263d4d4eeaa9dad87cb43.diff

LOG: Fix a syntax error

Added: 
    

Modified: 
    lldb/test/API/functionalities/signal/TestSendSignal.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/signal/TestSendSignal.py b/lldb/test/API/functionalities/signal/TestSendSignal.py
index be74f00aa10a3..0fbfdfee594e4 100644
--- a/lldb/test/API/functionalities/signal/TestSendSignal.py
+++ b/lldb/test/API/functionalities/signal/TestSendSignal.py
@@ -104,4 +104,4 @@ def match_state(self, process_listener, expected_state):
         state = lldb.SBProcess.GetStateFromEvent(event)
         self.assertEquals(state, expected_state,
                         "It was the %s state." %
-                        lldb.SBDebugger_StateAsCString(expected_state))
+                        lldb.SBDebugger.StateAsCString(expected_state))


        


More information about the lldb-commits mailing list