diff options
author | Enrico Granata <egranata@apple.com> | 2014-10-01 21:47:29 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2014-10-01 21:47:29 +0000 |
commit | 06be059ad9950c7f33a63ecabfb3562f34dd3d51 (patch) | |
tree | 6c32e91937ab5375eaaa8c3a0503d42d929e5792 /lldb/test/functionalities/command_script/welcome.py | |
parent | ebcf42cdec7a51b8fe6b07cf01ce0f7bd0e8be86 (diff) | |
download | bcm5719-llvm-06be059ad9950c7f33a63ecabfb3562f34dd3d51.tar.gz bcm5719-llvm-06be059ad9950c7f33a63ecabfb3562f34dd3d51.zip |
Allow Python commands to optionally take an SBExecutionContext argument in case they need to handle 'where they want to act' separately from the notion of 'currently-selected entity' that is associated to the debugger. Do this in an (hopefully) non-breaking way by running an argcount check before passing in the new argument. Update the test case to also check for this new feature. www update to follow
llvm-svn: 218834
Diffstat (limited to 'lldb/test/functionalities/command_script/welcome.py')
-rw-r--r-- | lldb/test/functionalities/command_script/welcome.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/functionalities/command_script/welcome.py b/lldb/test/functionalities/command_script/welcome.py index b6340990e78..c444934012f 100644 --- a/lldb/test/functionalities/command_script/welcome.py +++ b/lldb/test/functionalities/command_script/welcome.py @@ -30,3 +30,6 @@ def check_for_synchro(debugger, args, result, dict): if debugger.GetAsync() == False: print >>result, ('I am running sync') +def takes_exe_ctx(debugger, args, exe_ctx, result, dict): + print >>result, str(exe_ctx.GetTarget()) + |