diff options
| author | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2025-09-01 01:36:15 +0500 |
|---|---|---|
| committer | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2025-09-01 01:41:05 +0500 |
| commit | eef79c8b49aa45458bbaf895603385a7819cc182 (patch) | |
| tree | 367299bd0879d2d91edea158960a7fad13e3643c /lldb/test/API/python_api | |
| parent | 0bdb915f9aa5128532a819b09d29a75ee0d6297a (diff) | |
| download | llvm-eef79c8b49aa45458bbaf895603385a7819cc182.zip llvm-eef79c8b49aa45458bbaf895603385a7819cc182.tar.gz llvm-eef79c8b49aa45458bbaf895603385a7819cc182.tar.bz2 | |
[lldb][test] Mark TestGetBaseName.py as expected failure on Windows
TestGetBaseName.py introduced in PR #155939 is failing on windows
LLDB bots. This patch adds @expectedFailureAll(oslist=["windows"])
decorator to mark it as an expected failure on Windows to make
buildbots green while the underlying issue is investigated.
(see: https://lab.llvm.org/buildbot/#/builders/141/builds/11176).
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/basename/TestGetBaseName.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/basename/TestGetBaseName.py b/lldb/test/API/python_api/basename/TestGetBaseName.py index bd91acd..dd82f75 100644 --- a/lldb/test/API/python_api/basename/TestGetBaseName.py +++ b/lldb/test/API/python_api/basename/TestGetBaseName.py @@ -15,6 +15,7 @@ class GetBaseNameTestCase(TestBase): TestBase.setUp(self) self.main_source_file = lldb.SBFileSpec("main.cpp") + @expectedFailureAll(oslist=["windows"]) def test(self): """Test SBFunction.GetBaseName() and SBSymbol.GetBaseName()""" self.build() |
