Skip to content

Commit a14659a

Browse files
[lldb] deactivate some tests on older SDKs (#147768)
#144913 was reverted because some of the Darwin tests were failing on SDKs prior to `15.0`. Only the x86 bots run on macOS `14.0`. The aarch64 ones run on macOS `15.0`. In this patch, we deactivate the failing Darwin tests on older SDKs (prior to `15.0`).
1 parent 2cf15a1 commit a14659a

File tree

19 files changed

+20
-1
lines changed

19 files changed

+20
-1
lines changed

lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestCase(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(macos_version=["<", "15.0"])
1314
@skipUnlessDarwin
1415
def test(self):
1516
self.build()

lldb/test/API/commands/expression/import-std-module/basic/TestImportStdModule.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class ImportStdModule(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(macos_version=["<", "15.0"])
1314
def test(self):
1415
self.build()
1516

@@ -38,6 +39,7 @@ def test(self):
3839

3940
@add_test_categories(["libc++"])
4041
@skipIf(compiler=no_match("clang"))
42+
@skipIf(macos_version=["<", "15.0"])
4143
def test_non_cpp_language(self):
4244
self.build()
4345

lldb/test/API/commands/expression/import-std-module/conflicts/TestStdModuleWithConflicts.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
class TestImportStdModuleConflicts(TestBase):
1616
@add_test_categories(["libc++"])
1717
@skipIf(compiler=no_match("clang"))
18+
@skipIf(macos_version=["<", "15.0"])
1819
def test(self):
1920
self.build()
2021

lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestBasicDeque(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(macos_version=["<", "15.0"])
1314
@skipUnlessDarwin
1415
def test(self):
1516
self.build()

lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class TestDbgInfoContentDeque(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
1313
@skipIf(compiler="clang", compiler_version=["<", "18.0"])
14+
@skipIf(macos_version=["<", "15.0"])
1415
@skipUnlessDarwin
1516
def test(self):
1617
self.build()

lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestDbgInfoContentForwardList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(macos_version=["<", "15.0"])
1314
@skipUnlessDarwin
1415
def test(self):
1516
self.build()

lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestBasicForwardList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(macos_version=["<", "15.0"])
1314
@skipUnlessDarwin
1415
def test(self):
1516
self.build()

lldb/test/API/commands/expression/import-std-module/iterator/TestIteratorFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestCase(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(macos_version=["<", "15.0"])
1314
@skipUnlessDarwin
1415
def test(self):
1516
self.build()

lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class TestDbgInfoContentList(TestBase):
1212
@add_test_categories(["libc++"])
1313
@skipIf(compiler=no_match("clang"))
1414
@skipIf(compiler="clang", compiler_version=["<", "12.0"])
15-
@skipIf(macos_version=["<", "14.0"])
15+
@skipIf(macos_version=["<", "15.0"])
1616
@skipUnlessDarwin
1717
def test(self):
1818
self.build()

lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class TestBasicList(TestBase):
1111
@add_test_categories(["libc++"])
1212
@skipIf(compiler=no_match("clang"))
13+
@skipIf(macos_version=["<", "15.0"])
1314
@skipUnlessDarwin
1415
def test(self):
1516
self.build()

0 commit comments

Comments
 (0)