diff options
| author | Charles Zablit <c_zablit@apple.com> | 2025-07-30 18:01:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-30 18:01:04 +0100 |
| commit | a14659a2c8c82804b611925fa7a48fd26ef1d135 (patch) | |
| tree | dead28c41a7f682a9fa9b324b9ea8d547ab5b991 /lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py | |
| parent | 2cf15a1a54fc45659f667113379891e6c06ce50a (diff) | |
[lldb] deactivate some tests on older SDKs (#147768)
https://github.com/llvm/llvm-project/pull/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`).
Diffstat (limited to 'lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py')
| -rw-r--r-- | lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py b/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py index 1b21fe374ce5..a488276c2e54 100644 --- a/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py +++ b/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py @@ -10,6 +10,7 @@ from lldbsuite.test import lldbutil class TestCase(TestBase): @add_test_categories(["libc++"]) @skipIf(compiler=no_match("clang")) + @skipIf(macos_version=["<", "15.0"]) @skipUnlessDarwin def test(self): self.build() |
