diff options
author | Jim Ingham <jingham@apple.com> | 2014-04-03 00:50:56 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-04-03 00:50:56 +0000 |
commit | 24e84d2c87835001d8cfd72137b493cade6e300d (patch) | |
tree | d2de31546e2e2891d0dc3fc70fc0c82b54441105 | |
parent | b4865d698be45ae548284720da4a60fd9f0e3f44 (diff) | |
download | bcm5719-llvm-24e84d2c87835001d8cfd72137b493cade6e300d.tar.gz bcm5719-llvm-24e84d2c87835001d8cfd72137b493cade6e300d.zip |
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.
llvm-svn: 205494
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_breakpoint.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_breakpoint.py b/lldb/test/python_api/default-constructor/sb_breakpoint.py index 2bdc539a001..1efe131bfaa 100644 --- a/lldb/test/python_api/default-constructor/sb_breakpoint.py +++ b/lldb/test/python_api/default-constructor/sb_breakpoint.py @@ -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()) |