diff options
author | Ilia K <ki.stfu@gmail.com> | 2016-07-29 06:01:20 +0000 |
---|---|---|
committer | Ilia K <ki.stfu@gmail.com> | 2016-07-29 06:01:20 +0000 |
commit | 5659a2850ff20db432f8550e836935aa4cc33afe (patch) | |
tree | f0ea88429ff7b911a6952eb5881a68cd7ae4e3de /lldb/packages/Python/lldbsuite/test | |
parent | 202042439c5c9d4173fe946f47d0d1f77ac8ced8 (diff) | |
download | bcm5719-llvm-5659a2850ff20db432f8550e836935aa4cc33afe.tar.gz bcm5719-llvm-5659a2850ff20db432f8550e836935aa4cc33afe.zip |
Fix -break-insert not working when using absolute paths (MI)
Summary:
When trying to parse the -break-insert arguments as a named location, the string parsing was not configured to allow directory paths. This patch adds a constructor to allow the parsing of string as directory path along with the other parameters.
This fixes https://llvm.org/bugs/show_bug.cgi?id=28709
Patch from malaperle@gmail.com
Reviewers: clayborg, ki.stfu
Subscribers: lldb-commits, ki.stfu
Differential Revision: https://reviews.llvm.org/D22902
llvm-svn: 277117
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/TestMiBreak.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/TestMiBreak.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/TestMiBreak.py index c4a801c991a..1e0b240d0d6 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/TestMiBreak.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/TestMiBreak.py @@ -155,7 +155,6 @@ class MiBreakTestCase(lldbmi_testcase.MiTestCaseBase): @skipIfWindows #llvm.org/pr24452: Get lldb-mi tests working on Windows @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races - @unittest2.expectedFailure("-break-insert doesn't work for absolute path") def test_lldbmi_break_insert_file_line_absolute_path(self): """Test that 'lldb-mi --interpreter' works for file:line breakpoints.""" |