From 2c790db45b3f1fbd104c77f5f05525f559739a0e Mon Sep 17 00:00:00 2001 From: Egor Zhdan Date: Mon, 15 Sep 2025 13:34:41 +0100 Subject: [PATCH] [cxx-interop] Remove redundant `-disable-availability-checking` in test rdar://159026025 --- test/Interop/SwiftToCxx/class/swift-actor-execution.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Interop/SwiftToCxx/class/swift-actor-execution.cpp b/test/Interop/SwiftToCxx/class/swift-actor-execution.cpp index 0ea535ee55648..7a828c2a1d9ef 100644 --- a/test/Interop/SwiftToCxx/class/swift-actor-execution.cpp +++ b/test/Interop/SwiftToCxx/class/swift-actor-execution.cpp @@ -1,19 +1,19 @@ // RUN: %empty-directory(%t) -// RUN: %target-swift-frontend %S/swift-actor-in-cxx.swift -module-name Actor -clang-header-expose-decls=has-expose-attr -typecheck -verify -emit-clang-header-path %t/actor.h -disable-availability-checking +// RUN: %target-swift-frontend %S/swift-actor-in-cxx.swift -module-name Actor -clang-header-expose-decls=has-expose-attr -typecheck -verify -emit-clang-header-path %t/actor.h // RUN: %target-interop-build-clangxx -c %s -I %t -o %t/swift-actor-execution.o -// RUN: %target-interop-build-swift %S/swift-actor-in-cxx.swift -o %t/swift-actor-execution -Xlinker %t/swift-actor-execution.o -module-name Actor -Xfrontend -entry-point-function-name -Xfrontend swiftMain -Xfrontend -disable-availability-checking +// RUN: %target-interop-build-swift %S/swift-actor-in-cxx.swift -o %t/swift-actor-execution -Xlinker %t/swift-actor-execution.o -module-name Actor -Xfrontend -entry-point-function-name -Xfrontend swiftMain // RUN: %target-codesign %t/swift-actor-execution // RUN: %target-run %t/swift-actor-execution | %FileCheck %s // RUN: %empty-directory(%t-evo) -// RUN: %target-swift-frontend %S/swift-actor-in-cxx.swift -module-name Actor -clang-header-expose-decls=has-expose-attr -enable-library-evolution -typecheck -verify -emit-clang-header-path %t-evo/actor.h -disable-availability-checking +// RUN: %target-swift-frontend %S/swift-actor-in-cxx.swift -module-name Actor -clang-header-expose-decls=has-expose-attr -enable-library-evolution -typecheck -verify -emit-clang-header-path %t-evo/actor.h // RUN: %target-interop-build-clangxx -c %s -I %t-evo -o %t-evo/swift-actor-execution.o -// RUN: %target-interop-build-swift %S/swift-actor-in-cxx.swift -o %t-evo/swift-actor-execution-evo -Xlinker %t-evo/swift-actor-execution.o -module-name Actor -enable-library-evolution -Xfrontend -entry-point-function-name -Xfrontend swiftMain -Xfrontend -disable-availability-checking +// RUN: %target-interop-build-swift %S/swift-actor-in-cxx.swift -o %t-evo/swift-actor-execution-evo -Xlinker %t-evo/swift-actor-execution.o -module-name Actor -enable-library-evolution -Xfrontend -entry-point-function-name -Xfrontend swiftMain // RUN: %target-codesign %t-evo/swift-actor-execution-evo // RUN: %target-run %t-evo/swift-actor-execution-evo | %FileCheck %s