From eef79c8b49aa45458bbaf895603385a7819cc182 Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Mon, 1 Sep 2025 01:36:15 +0500 Subject: [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). --- lldb/test/API/python_api/basename/TestGetBaseName.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lldb/test/API/python_api') 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() -- cgit v1.1