Author: jingham
Date: Wed Apr  2 19:50:56 2014
New Revision: 205494

URL: http://llvm.org/viewvc/llvm-project?rev=205494&view=rev
Log:
I removed SetCallback from the Python API's since it wasn't actually useful, 
and added SetScriptCallbackFunction,
and SetScriptCallbackBody.  So add these to the default constructor test case.

Modified:
    lldb/trunk/test/python_api/default-constructor/sb_breakpoint.py

Modified: lldb/trunk/test/python_api/default-constructor/sb_breakpoint.py
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/default-constructor/sb_breakpoint.py?rev=205494&r1=205493&r2=205494&view=diff
==============================================================================
--- lldb/trunk/test/python_api/default-constructor/sb_breakpoint.py (original)
+++ lldb/trunk/test/python_api/default-constructor/sb_breakpoint.py Wed Apr  2 
19:50:56 2014
@@ -27,7 +27,8 @@ def fuzz_obj(obj):
     obj.GetThreadName()
     obj.SetQueueName("my queue")
     obj.GetQueueName()
-    obj.SetCallback(None, None)
+    obj.SetScriptCallbackFunction(None)
+    obj.SetScriptCallbackBody (None)
     obj.GetNumResolvedLocations()
     obj.GetNumLocations()
     obj.GetDescription(lldb.SBStream())


_______________________________________________
lldb-commits mailing list
lldb-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to