diff options
author | Jim Ingham <jingham@apple.com> | 2016-09-20 22:54:49 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2016-09-20 22:54:49 +0000 |
commit | 92d1960e3b63c4c9ca7e7af3463b39c46864c792 (patch) | |
tree | d8df5f1e30f279fa1a51213dc92d6899029d1cde /lldb/scripts/interface/SBBreakpoint.i | |
parent | b6b8f6c308ce165bc58a25f25f2226c18614e344 (diff) | |
download | bcm5719-llvm-92d1960e3b63c4c9ca7e7af3463b39c46864c792.tar.gz bcm5719-llvm-92d1960e3b63c4c9ca7e7af3463b39c46864c792.zip |
Add some more tests for breakpoint serialization.
Serialize breakpoint names & the hardware_requested attributes.
Also added a few missing affordances to SBBreakpoint whose absence
writing the tests pointed out.
<rdar://problem/12611863>
llvm-svn: 282036
Diffstat (limited to 'lldb/scripts/interface/SBBreakpoint.i')
-rw-r--r-- | lldb/scripts/interface/SBBreakpoint.i | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBBreakpoint.i b/lldb/scripts/interface/SBBreakpoint.i index 9098c6ee72d..22c4c2174f3 100644 --- a/lldb/scripts/interface/SBBreakpoint.i +++ b/lldb/scripts/interface/SBBreakpoint.i @@ -200,6 +200,10 @@ public: SBError SetScriptCallbackBody (const char *script_body_text); + void SetCommandLineCommands(SBStringList &commands); + + bool GetCommandLineCommands(SBStringList &commands); + bool AddName (const char *new_name); |