diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-10-13 19:22:50 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-13 19:22:50 +0000 |
| commit | 456c9c343e175e146868d7a80108dc2540223096 (patch) | |
| tree | 2b8e5445f73de371f3013f8823d6c9b071cefbe6 /lldb/test/breakpoint_command/TestBreakpointCommand.py | |
| parent | b6e8cf9663f8c1ec6eb1c7f7c7c10a8aa4e966a5 (diff) | |
| download | bcm5719-llvm-456c9c343e175e146868d7a80108dc2540223096.tar.gz bcm5719-llvm-456c9c343e175e146868d7a80108dc2540223096.zip | |
Apply (query-replace "frame variable" "frame variable -t") and fix a comment about 'expr var',
not 'frame variable var'.
llvm-svn: 116419
Diffstat (limited to 'lldb/test/breakpoint_command/TestBreakpointCommand.py')
| -rw-r--r-- | lldb/test/breakpoint_command/TestBreakpointCommand.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/breakpoint_command/TestBreakpointCommand.py b/lldb/test/breakpoint_command/TestBreakpointCommand.py index d14d51063e0..600f6097afa 100644 --- a/lldb/test/breakpoint_command/TestBreakpointCommand.py +++ b/lldb/test/breakpoint_command/TestBreakpointCommand.py @@ -47,7 +47,7 @@ class BreakpointCommandTestCase(TestBase): self.line) # Now add callbacks for the breakpoints just created. - self.runCmd("breakpoint command add -c -o 'frame variable -s' 1") + self.runCmd("breakpoint command add -c -o 'frame variable -t -s' 1") self.runCmd("breakpoint command add -p -o 'here = open(\"output.txt\", \"w\"); print >> here, \"lldb\"; here.close()' 2") # Check that the breakpoint commands are correctly set. @@ -61,7 +61,7 @@ class BreakpointCommandTestCase(TestBase): self.expect("breakpoint command list 1", "Breakpoint 1 command ok", substrs = ["Breakpoint commands:", - "frame variable -s"]) + "frame variable -t -s"]) self.expect("breakpoint command list 2", "Breakpoint 2 command ok", substrs = ["Breakpoint commands:", "here = open", |

