[Lldb-commits] [lldb] r258592 - Fix missing function argument passthrough.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 22 16:49:11 PST 2016


Author: zturner
Date: Fri Jan 22 18:49:11 2016
New Revision: 258592

URL: http://llvm.org/viewvc/llvm-project?rev=258592&view=rev
Log:
Fix missing function argument passthrough.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lldbutil.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lldbutil.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lldbutil.py?rev=258592&r1=258591&r2=258592&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lldbutil.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lldbutil.py Fri Jan 22 18:49:11 2016
@@ -579,7 +579,7 @@ def get_one_thread_stopped_at_breakpoint
     return threads[0]
 
 def get_one_thread_stopped_at_breakpoint(process, bkpt, require_exactly_one = True):
-    return get_one_thread_stopped_at_breakpoint_id(bkpt.GetID(), require_exactly_one)
+    return get_one_thread_stopped_at_breakpoint_id(process, bkpt.GetID(), require_exactly_one)
 
 def is_thread_crashed (test, thread):
     """In the test suite we dereference a null pointer to simulate a crash. The way this is




More information about the lldb-commits mailing list