[Lldb-commits] [lldb] 3a16cbe - [LLDB] Skip linker symbols test on Windows and MacOS. (#184690)

via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 4 15:04:02 PST 2026


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)


        


More information about the lldb-commits mailing list