aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api
diff options
context:
space:
mode:
authorMuhammad Omair Javaid <omair.javaid@linaro.org>2025-09-04 17:15:47 +0500
committerMuhammad Omair Javaid <omair.javaid@linaro.org>2025-09-04 17:23:18 +0500
commitc0f84d31ed3e481d902b92efe676e7793abafe27 (patch)
tree4bc5937152abd241f7c3548fdaa4256570c598f3 /lldb/test/API/python_api
parent379e121122ab43d85c6946c56c99c7bfd99e689c (diff)
downloadllvm-c0f84d31ed3e481d902b92efe676e7793abafe27.zip
llvm-c0f84d31ed3e481d902b92efe676e7793abafe27.tar.gz
llvm-c0f84d31ed3e481d902b92efe676e7793abafe27.tar.bz2
[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 https://github.com/llvm/llvm-project/issues/156861
Diffstat (limited to 'lldb/test/API/python_api')
-rw-r--r--lldb/test/API/python_api/basename/TestGetBaseName.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/test/API/python_api/basename/TestGetBaseName.py b/lldb/test/API/python_api/basename/TestGetBaseName.py
index dd82f75..a3b752e 100644
--- a/lldb/test/API/python_api/basename/TestGetBaseName.py
+++ b/lldb/test/API/python_api/basename/TestGetBaseName.py
@@ -15,7 +15,10 @@ class GetBaseNameTestCase(TestBase):
TestBase.setUp(self)
self.main_source_file = lldb.SBFileSpec("main.cpp")
- @expectedFailureAll(oslist=["windows"])
+ @expectedFailureAll(
+ oslist=["windows"],
+ bugnumber="https://github.com/llvm/llvm-project/issues/156861",
+ )
def test(self):
"""Test SBFunction.GetBaseName() and SBSymbol.GetBaseName()"""
self.build()