diff options
author | Jim Ingham <jingham@apple.com> | 2012-09-22 00:14:47 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-09-22 00:14:47 +0000 |
commit | 493dffe2b12a0f9c61d700f23541c2a53fcedafe (patch) | |
tree | 0aa5afd2db74af752d9aca1bb9576161c5939af3 /lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py | |
parent | ecfb8283412ebacfcce6a833c1332a150cf31b9b (diff) | |
download | bcm5719-llvm-493dffe2b12a0f9c61d700f23541c2a53fcedafe.tar.gz bcm5719-llvm-493dffe2b12a0f9c61d700f23541c2a53fcedafe.zip |
Missed a few places where I didn't delete the obsolete (commented out) version of the breakpoint creation.
llvm-svn: 164436
Diffstat (limited to 'lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py')
-rw-r--r-- | lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py b/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py index 82da6ba7b82..7eb3acfefda 100644 --- a/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py +++ b/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py @@ -47,20 +47,8 @@ class BreakpointCommandTestCase(TestBase): # Add three breakpoints on the same line. The first time we don't specify the file, # since the default file is the one containing main: lldbutil.run_break_set_by_file_and_line (self, None, self.line, num_expected_locations=1, loc_exact=True) -# self.expect("breakpoint set -l %d" % self.line, -# BREAKPOINT_CREATED, -# startstr = "Breakpoint created: 1: file ='main.c', line = %d, locations = 1" % -# self.line) lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True) -# self.expect("breakpoint set -f main.c -l %d" % self.line, -# BREAKPOINT_CREATED, -# startstr = "Breakpoint created: 2: file ='main.c', line = %d, locations = 1" % -# self.line) lldbutil.run_break_set_by_file_and_line (self, "main.c", self.line, num_expected_locations=1, loc_exact=True) -# self.expect("breakpoint set -f main.c -l %d" % self.line, -# BREAKPOINT_CREATED, -# startstr = "Breakpoint created: 3: file ='main.c', line = %d, locations = 1" % -# self.line) # Now add callbacks for the breakpoints just created. self.runCmd("breakpoint command add -s command -o 'frame variable -T -s' 1") |