diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-10-14 17:31:24 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-14 17:31:24 +0000 |
| commit | aadcef54def3f0e3d6c00a02565e42a91c44c024 (patch) | |
| tree | 5bd8c6c715af629209ea0bb577e1a6b87f054718 /lldb/test/breakpoint_command/TestBreakpointCommand.py | |
| parent | d65924f4a005216e5508d56348ac3c17f1f7a37e (diff) | |
| download | bcm5719-llvm-aadcef54def3f0e3d6c00a02565e42a91c44c024.tar.gz bcm5719-llvm-aadcef54def3f0e3d6c00a02565e42a91c44c024.zip | |
Make calling the super class's setUp() method less fragile.
llvm-svn: 116490
Diffstat (limited to 'lldb/test/breakpoint_command/TestBreakpointCommand.py')
| -rw-r--r-- | lldb/test/breakpoint_command/TestBreakpointCommand.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/breakpoint_command/TestBreakpointCommand.py b/lldb/test/breakpoint_command/TestBreakpointCommand.py index 600f6097afa..451c3444c84 100644 --- a/lldb/test/breakpoint_command/TestBreakpointCommand.py +++ b/lldb/test/breakpoint_command/TestBreakpointCommand.py @@ -27,7 +27,8 @@ class BreakpointCommandTestCase(TestBase): self.breakpoint_command_sequence() def setUp(self): - super(BreakpointCommandTestCase, self).setUp() + # Call super's setUp(). + TestBase.setUp(self) # Find the line number to break inside main(). self.line = line_number('main.c', '// Set break point at this line.') |

