Skip to content

Commit f03f811

Browse files
committed
[lldb] Only run TestUniversal64 on macOS 11 and later
GreenDragon is running on a host OS and toolchain that doesn't support building for Apple Silicon.
1 parent 32a5482 commit f03f811

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/test/API/macosx/universal64/TestUniversal64.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@ def do_test(self):
2525

2626
@skipUnlessDarwin
2727
@skipIfDarwinEmbedded
28+
@skipIf(macos_version=["<", "11.0"])
2829
def test_universal64_executable(self):
2930
"""Test fat64 universal executable"""
3031
self.build(debug_info="dsym")
3132
self.do_test()
3233

3334
@skipUnlessDarwin
3435
@skipIfDarwinEmbedded
35-
@skipIf(compiler="clang", compiler_version=['<', '7.0'])
36+
@skipIf(macos_version=["<", "11.0"])
3637
def test_universal64_dsym(self):
3738
"""Test fat64 universal dSYM"""
3839
self.build(debug_info="dsym", dictionary={'FAT64_DSYM': '1'})

0 commit comments

Comments
 (0)