summaryrefslogtreecommitdiffstats
path: root/lldb/test/breakpoint_command
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2011-05-04 03:43:18 +0000
committerJim Ingham <jingham@apple.com>2011-05-04 03:43:18 +0000
commit2837b766f594f6aa0ec17c96bc8d257e2569d65e (patch)
tree3333316451bc06a2e495379451073b94abe38f9e /lldb/test/breakpoint_command
parent3d57441e56104b2bd93d85b4d19af1f5f40dbf82 (diff)
downloadbcm5719-llvm-2837b766f594f6aa0ec17c96bc8d257e2569d65e.tar.gz
bcm5719-llvm-2837b766f594f6aa0ec17c96bc8d257e2569d65e.zip
Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay).
Change the boolean "use_dynamic" over to a tri-state, no-dynamic, dynamic-w/o running target, and dynamic with running target. llvm-svn: 130832
Diffstat (limited to 'lldb/test/breakpoint_command')
-rw-r--r--lldb/test/breakpoint_command/TestBreakpointCommand.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/breakpoint_command/TestBreakpointCommand.py b/lldb/test/breakpoint_command/TestBreakpointCommand.py
index 30a38428686..c892ea11573 100644
--- a/lldb/test/breakpoint_command/TestBreakpointCommand.py
+++ b/lldb/test/breakpoint_command/TestBreakpointCommand.py
@@ -51,7 +51,7 @@ class BreakpointCommandTestCase(TestBase):
self.line)
# Now add callbacks for the breakpoints just created.
- self.runCmd("breakpoint command add -s command -o 'frame variable -t -s' 1")
+ self.runCmd("breakpoint command add -s command -o 'frame variable -T -s' 1")
self.runCmd("breakpoint command add -s python -o 'here = open(\"output.txt\", \"w\"); print >> here, \"lldb\"; here.close()' 2")
# Check that the breakpoint commands are correctly set.
@@ -69,7 +69,7 @@ class BreakpointCommandTestCase(TestBase):
self.expect("breakpoint command list 1", "Breakpoint 1 command ok",
substrs = ["Breakpoint commands:",
- "frame variable -t -s"])
+ "frame variable -T -s"])
self.expect("breakpoint command list 2", "Breakpoint 2 command ok",
substrs = ["Breakpoint commands:",
"here = open",
OpenPOWER on IntegriCloud