mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This is required to correctly use the mock SDK when the SDK overlay is built and tested separately. (Otherwise, the mock SDK might not get used, because the overlay SDK options would expand from the %-substitution, appear first on the command line, and shadow the mock SDK in the search path). Swift SVN r25185
32 lines
997 B
Swift
32 lines
997 B
Swift
// RUN: rm -rf %t
|
|
// RUN: mkdir %t
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) %s -parse -emit-objc-header-path %t/empty.h
|
|
// RUN: FileCheck %s < %t/empty.h
|
|
// RUN: %check-in-clang %t/empty.h
|
|
// RUN: %check-in-clang -fno-modules %t/empty.h
|
|
// RUN: not %check-in-clang -I %S/Inputs/clang-headers %t/empty.h 2>&1 | FileCheck %s --check-prefix=CUSTOM-OBJC-PROLOGUE
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
// CHECK-NOT: @import Swift;
|
|
|
|
// CHECK-LABEL: #include <objc/NSObject.h>
|
|
// CHECK: #include <stdint.h>
|
|
// CHECK: #include <stddef.h>
|
|
// CHECK: #include <stdbool.h>
|
|
|
|
// CHECK: # define SWIFT_METATYPE(X)
|
|
// CHECK: # define SWIFT_CLASS
|
|
// CHECK: # define SWIFT_PROTOCOL
|
|
// CHECK: # define SWIFT_EXTENSION(M)
|
|
// CHECK: # define OBJC_DESIGNATED_INITIALIZER
|
|
// CHECK: # define __null_unspecified
|
|
|
|
// CHECK-LABEL: #if defined(__has_feature) && __has_feature(modules)
|
|
// CHECK-NEXT: #endif
|
|
|
|
|
|
// CHECK-NOT: {{[@;{}]}}
|
|
|
|
// CUSTOM-OBJC-PROLOGUE: swift/objc-prologue.h:1:2: error: "Prologue included"
|