Skip to content

Commit

Permalink
[lldb] Specify LLVM target requirements in TestLaunchProcessPosixSpawn
Browse files Browse the repository at this point in the history
  • Loading branch information
kastiglione committed Jan 12, 2022
1 parent bf95d5e commit 06c7bdc
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -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()
Expand All @@ -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()
Expand Down

0 comments on commit 06c7bdc

Please sign in to comment.