diff options
Diffstat (limited to 'lldb/test/functionalities/command_script/TestCommandScript.py')
-rw-r--r-- | lldb/test/functionalities/command_script/TestCommandScript.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/functionalities/command_script/TestCommandScript.py b/lldb/test/functionalities/command_script/TestCommandScript.py index 6efda1c46aa..27ce4a7c6f1 100644 --- a/lldb/test/functionalities/command_script/TestCommandScript.py +++ b/lldb/test/functionalities/command_script/TestCommandScript.py @@ -40,6 +40,7 @@ class CmdPythonTestCase(TestBase): self.runCmd('command script delete tell_async', check=False) self.runCmd('command script delete tell_curr', check=False) self.runCmd('command script delete bug11569', check=False) + self.runCmd('command script delete takes_exe_ctx', check=False) # Execute the cleanup function during test case tear down. self.addTearDownHook(cleanup) @@ -108,6 +109,9 @@ class CmdPythonTestCase(TestBase): substrs = ['running async']) self.expect("tell_curr", substrs = ['I am running sync']) + +# check that the execution context is passed in to commands that ask for it + self.expect("takes_exe_ctx", substrs = ["a.out"]) # Test that a python command can redefine itself self.expect('command script add -f foobar welcome -h "just some help"') |