Skip to content

Commit c0f84d3

Browse files
committed
[lldb] Add issue no to xfail decorators in TestGetBaseName (#155939)
TestGetBaseName.py is currently marked as an expected failure on Windows because SBFunction::GetBaseName() and SBSymbol::GetBaseName() don’t yet handle MSVC-style mangling. This patch updates the @expectedFailureAll decorator to include a reference to #156861
1 parent 379e121 commit c0f84d3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lldb/test/API/python_api/basename/TestGetBaseName.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ def setUp(self):
1515
TestBase.setUp(self)
1616
self.main_source_file = lldb.SBFileSpec("main.cpp")
1717

18-
@expectedFailureAll(oslist=["windows"])
18+
@expectedFailureAll(
19+
oslist=["windows"],
20+
bugnumber="https://github.com/llvm/llvm-project/issues/156861",
21+
)
1922
def test(self):
2023
"""Test SBFunction.GetBaseName() and SBSymbol.GetBaseName()"""
2124
self.build()

0 commit comments

Comments
 (0)