[Lldb-commits] [lldb] 06c7bdc - [lldb] Specify LLVM target requirements in TestLaunchProcessPosixSpawn
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 11 19:01:09 PST 2022
Author: Dave Lee
Date: 2022-01-11T19:00:47-08:00
New Revision: 06c7bdc8f1950dfa0cee19aabf13b8fce859ec98
URL: https://github.com/llvm/llvm-project/commit/06c7bdc8f1950dfa0cee19aabf13b8fce859ec98
DIFF: https://github.com/llvm/llvm-project/commit/06c7bdc8f1950dfa0cee19aabf13b8fce859ec98.diff
LOG: [lldb] Specify LLVM target requirements in TestLaunchProcessPosixSpawn
Added:
Modified:
lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py
Removed:
################################################################################
diff --git a/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py b/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py
index 4893c137c322..8c3017630b99 100644
--- a/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py
+++ b/lldb/test/API/macosx/posix_spawn/TestLaunchProcessPosixSpawn.py
@@ -41,6 +41,8 @@ def run_arch(self, exe, arch):
@skipUnlessDarwin
@skipIfDarwinEmbedded
+ @skipIfLLVMTargetMissing("AArch64")
+ @skipIfLLVMTargetMissing("X86")
@skipTestIfFn(no_haswell)
def test_haswell(self):
self.build()
@@ -50,6 +52,8 @@ def test_haswell(self):
@skipUnlessDarwin
@skipIfDarwinEmbedded
+ @skipIfLLVMTargetMissing("AArch64")
+ @skipIfLLVMTargetMissing("X86")
@skipTestIfFn(no_apple_silicon)
def test_apple_silicon(self):
self.build()
More information about the lldb-commits
mailing list