Author: cmtice Date: 2026-03-04T23:03:57Z New Revision: 3a16cbe787885511d75d97f5da6af90858a8c184
URL: https://github.com/llvm/llvm-project/commit/3a16cbe787885511d75d97f5da6af90858a8c184 DIFF: https://github.com/llvm/llvm-project/commit/3a16cbe787885511d75d97f5da6af90858a8c184.diff LOG: [LLDB] Skip linker symbols test on Windows and MacOS. (#184690) The test was only intended to run on linux. Currently it's failing on the lldb-x86_64-win builder: https://lab.llvm.org/buildbot/#/builders/211/builds/6741 Added: Modified: lldb/test/API/linux/linker-symbols/TestLinkerSymbols.py Removed: ################################################################################ diff --git a/lldb/test/API/linux/linker-symbols/TestLinkerSymbols.py b/lldb/test/API/linux/linker-symbols/TestLinkerSymbols.py index 364ac44c97917..bc21a08feec68 100644 --- a/lldb/test/API/linux/linker-symbols/TestLinkerSymbols.py +++ b/lldb/test/API/linux/linker-symbols/TestLinkerSymbols.py @@ -14,6 +14,7 @@ class TestLinkerSymbols(TestBase): # each debug info format. NO_DEBUG_INFO_TESTCASE = True + @skipUnlessPlatform(["linux"]) def test_linker_symbols(self): build_dict = dict(LD_EXTRAS="-Wl,-T," + self.getSourcePath("linker.script")) self.build(dictionary=build_dict) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
