diff options
author | Daniel Malea <daniel.malea@intel.com> | 2012-11-20 18:53:21 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2012-11-20 18:53:21 +0000 |
commit | 096925233b16953edc342a01685a51d040b96cac (patch) | |
tree | e4cfe5c703abdc8061e57e676e8d4de7c7eb01c1 /lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py | |
parent | 3ab352292ccd2ddd376ec8c4f008f54e161b8b36 (diff) | |
download | bcm5719-llvm-096925233b16953edc342a01685a51d040b96cac.tar.gz bcm5719-llvm-096925233b16953edc342a01685a51d040b96cac.zip |
Use auto-confirm setting to avoid prompts causing some tests to appear to hang
- this commit addresses bugzilla #14385
llvm-svn: 168375
Diffstat (limited to 'lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py')
-rw-r--r-- | lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py b/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py index bda402de116..2ecdfc3ca00 100644 --- a/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py +++ b/lldb/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py @@ -26,7 +26,6 @@ class BreakpointCommandTestCase(TestBase): self.breakpoint_command_sequence() self.breakpoint_command_script_parameters () - @unittest2.skipIf(sys.platform.startswith("linux"), "Hanging on Linux: bugzilla #14385") @dwarf_test def test_with_dwarf(self): """Test a sequence of breakpoint command add, list, and delete.""" @@ -39,6 +38,8 @@ class BreakpointCommandTestCase(TestBase): TestBase.setUp(self) # Find the line number to break inside main(). self.line = line_number('main.c', '// Set break point at this line.') + # disable "There is a running process, kill it and restart?" prompt + self.runCmd("settings set auto-confirm true") def breakpoint_command_sequence(self): """Test a sequence of breakpoint command add, list, and delete.""" |