Skip to content

Commit ee49665

Browse files
committed
Disable a RUN line in osx-targets.swift
Darwin 55 is now translated to macOS 46 after the LLVM changes landed that added support for macOS 11. This change temporarily disables the RUN line in the test that uses the `darwin55` triple until the appropriate fix is upstreamed on the swift side. (cherry picked from commit f1bba3e)
1 parent 71595d1 commit ee49665

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/IRGen/osx-targets.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// RUN: %swift %s -emit-ir | %FileCheck %s
22
// RUN: %swift -target x86_64-apple-macosx10.51 %s -emit-ir | %FileCheck -check-prefix=CHECK-SPECIFIC %s
3-
// RUN: %swift -target x86_64-apple-darwin55 %s -emit-ir | %FileCheck -check-prefix=CHECK-SPECIFIC %s
3+
4+
// disable this test until macOS 11 support lands in Swift.
5+
// : %swift -target x86_64-apple-darwin55 %s -emit-ir | %FileCheck -check-prefix=CHECK-SPECIFIC %s
46

57
// REQUIRES: OS=macosx
68

0 commit comments

Comments
 (0)