Skip to content

Commit 45927d7

Browse files
committed
[lldb] Skip delay-init test when run on pre-macOS 15
The test has a check that the static linker supports the new option, but it assumed the Xcode 16 linker also meant it was running on macOS 15 and the dynamic linker would honor dependencies flagged this way. But Xcode 16 can be run on macOS 14.5, so we need to skip the test in that combination.
1 parent fcc4935 commit 45927d7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lldb/test/API/macosx/delay-init-dependency/TestDelayInitDependency.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class TestDelayInitDependencies(TestBase):
1111
NO_DEBUG_INFO_TESTCASE = True
1212

1313
@skipUnlessDarwin
14+
@skipIf(macos_version=["<", "15.0"])
1415
def test_delay_init_dependency(self):
1516
TestBase.setUp(self)
1617
out = subprocess.run(

0 commit comments

Comments
 (0)