mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Also mark them as not executable, since they don't call `%target-run`.
This is needed in back deployment configurations where StringProcessing is
not supported.
Addresses rdar://159635486
31 lines
1.6 KiB
Swift
31 lines
1.6 KiB
Swift
// REQUIRES: swift_swift_parser, concurrency, string_processing
|
|
// REQUIRES: swift_feature_MacrosOnImports
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %host-build-swift -swift-version 5 -emit-library -o %t/%target-library-name(MacroDefinition) -module-name=MacroDefinition %S/Inputs/syntax_macro_definitions.swift -g -no-toolchain-stdlib-rpath -swift-version 5
|
|
|
|
// Build the macro library to give us access to AddAsync.
|
|
// RUN: %target-swift-frontend -swift-version 5 -emit-module -o %t/macro_library.swiftmodule %S/Inputs/macro_library.swift -module-name macro_library -load-plugin-library %t/%target-library-name(MacroDefinition)
|
|
|
|
// Diagnostics testing
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck -verify -swift-version 5 -enable-experimental-feature MacrosOnImports -load-plugin-library %t/%target-library-name(MacroDefinition) -module-name ModuleUser %s -I %t
|
|
|
|
// Emit IR to ensure that we are handling the created body end-to-end.
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -emit-ir -swift-version 5 -g -enable-experimental-feature MacrosOnImports -load-plugin-library %t/%target-library-name(MacroDefinition) -module-name ModuleUser %s -I %t -validate-tbd-against-ir=none | %FileCheck %s
|
|
|
|
import CompletionHandlerGlobals
|
|
import macro_library
|
|
|
|
@available(SwiftStdlib 5.1, *)
|
|
func testAll(x: Double, y: Double, computer: SlowComputer) async {
|
|
let _: Double = await async_divide(1.0, 2.0)
|
|
let _: Double = await computer.divide(x, y)
|
|
|
|
f1(3.14159)
|
|
f2(3.14159)
|
|
f3(3.14159)
|
|
}
|
|
|
|
// CHECK: define{{.*}}@"$sSC12async_divideyS2d_SdtYaF"
|
|
// CHECK: define{{.*}}@"$sSo12SlowComputerV6divideyS2d_SdtYaF"
|