From f1bba3e1bfbc85b1cd8864ebc69c1a429bc86490 Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Thu, 2 Jul 2020 08:47:55 -0700 Subject: [PATCH] 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. --- test/IRGen/osx-targets.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/IRGen/osx-targets.swift b/test/IRGen/osx-targets.swift index 32d0f9e9cf2c9..deb62e65ff4c3 100644 --- a/test/IRGen/osx-targets.swift +++ b/test/IRGen/osx-targets.swift @@ -1,6 +1,8 @@ // RUN: %swift %s -emit-ir | %FileCheck %s // RUN: %swift -target x86_64-apple-macosx10.51 %s -emit-ir | %FileCheck -check-prefix=CHECK-SPECIFIC %s -// RUN: %swift -target x86_64-apple-darwin55 %s -emit-ir | %FileCheck -check-prefix=CHECK-SPECIFIC %s + +// disable this test until macOS 11 support lands in Swift. +// : %swift -target x86_64-apple-darwin55 %s -emit-ir | %FileCheck -check-prefix=CHECK-SPECIFIC %s // REQUIRES: OS=macosx