1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
// RUN: %empty-directory(%t)
// RUN: split-file %s %t
/// Build lib defining SPIs
// RUN: %target-swift-frontend -emit-module %t/Exported.swift \
// RUN: -module-name Exported -swift-version 5 -I %t \
// RUN: -enable-library-evolution \
// RUN: -emit-module-path %t/Exported.swiftmodule \
// RUN: -emit-module-interface-path %t/Exported.swiftinterface \
// RUN: -emit-private-module-interface-path %t/Exported.private.swiftinterface
// RUN: %target-swift-typecheck-module-from-interface(%t/Exported.swiftinterface) -I %t
// RUN: %target-swift-typecheck-module-from-interface(%t/Exported.private.swiftinterface) -module-name Exported -I %t
/// Build lib reexporting SPIs
// RUN: %target-swift-frontend -emit-module %t/Exporter.swift \
// RUN: -module-name Exporter -swift-version 5 -I %t \
// RUN: -enable-library-evolution \
// RUN: -emit-module-path %t/Exporter.swiftmodule \
// RUN: -emit-module-interface-path %t/Exporter.swiftinterface \
// RUN: -emit-private-module-interface-path %t/Exporter.private.swiftinterface
// RUN: %target-swift-typecheck-module-from-interface(%t/Exporter.swiftinterface) -I %t
// RUN: %target-swift-typecheck-module-from-interface(%t/Exporter.private.swiftinterface) -module-name Exporter -I %t
// RUN: %target-swift-frontend -emit-module %t/NonExportedAs.swift \
// RUN: -module-name NonExportedAs -swift-version 5 -I %t \
// RUN: -enable-library-evolution \
// RUN: -emit-module-path %t/NonExportedAs.swiftmodule \
// RUN: -emit-module-interface-path %t/NonExportedAs.swiftinterface \
// RUN: -emit-private-module-interface-path %t/NonExportedAs.private.swiftinterface
// RUN: %target-swift-typecheck-module-from-interface(%t/NonExportedAs.swiftinterface) -I %t
// RUN: %target-swift-typecheck-module-from-interface(%t/NonExportedAs.private.swiftinterface) -module-name NonExportedAs -I %t
/// Build lib not reexporting SPIs (a normal import)
// RUN: %target-swift-frontend -emit-module %t/NonExporter.swift \
// RUN: -module-name NonExporter -swift-version 5 -I %t \
// RUN: -enable-library-evolution \
// RUN: -emit-module-path %t/NonExporter.swiftmodule \
// RUN: -emit-module-interface-path %t/NonExporter.swiftinterface \
// RUN: -emit-private-module-interface-path %t/NonExporter.private.swiftinterface
// RUN: %target-swift-typecheck-module-from-interface(%t/NonExporter.swiftinterface) -I %t
// RUN: %target-swift-typecheck-module-from-interface(%t/NonExporter.private.swiftinterface) -module-name NonExporter -I %t
/// Build client of transitive SPIs and its swiftinterfaces
// RUN: %target-swift-frontend -emit-module %t/ClientLib.swift \
// RUN: -module-name ClientLib -swift-version 5 -I %t \
// RUN: -enable-library-evolution \
// RUN: -emit-module-path %t/ClientLib.swiftmodule \
// RUN: -emit-module-interface-path %t/ClientLib.swiftinterface \
// RUN: -emit-private-module-interface-path %t/ClientLib.private.swiftinterface
// RUN: %target-swift-typecheck-module-from-interface(%t/ClientLib.swiftinterface) -I %t
// RUN: %target-swift-typecheck-module-from-interface(%t/ClientLib.private.swiftinterface) -module-name ClientLib -I %t
/// Test diagnostics of a multifile client
// RUN: %target-swift-frontend -typecheck \
// RUN: %t/Client_FileA.swift %t/Client_FileB.swift\
// RUN: -swift-version 5 -I %t -verify
/// SPIs are now reexported by any `@_exported` from Swift modules, no matter
/// if `export_as` is present or not.
// RUN: %target-swift-frontend -typecheck \
// RUN: %t/NonExportedAsClient.swift \
// RUN: -swift-version 5 -I %t -verify
/// Test that SPIs don't leak when not reexported
// RUN: %target-swift-frontend -typecheck \
// RUN: %t/NonExporterClient.swift \
// RUN: -swift-version 5 -I %t -verify
/// Test diagnostics against private swiftinterfaces
// RUN: rm %t/Exported.swiftmodule %t/Exporter.swiftmodule
// RUN: %target-swift-frontend -typecheck \
// RUN: %t/Client_FileA.swift %t/Client_FileB.swift\
// RUN: -swift-version 5 -I %t -verify
/// Test diagnostics against public swiftinterfaces
// RUN: rm %t/Exported.private.swiftinterface %t/Exporter.private.swiftinterface
// RUN: %target-swift-frontend -typecheck \
// RUN: %t/PublicClient.swift \
// RUN: -swift-version 5 -I %t -verify
//--- module.modulemap
module Exported {
export_as Exporter
}
//--- Exported.swift
@_exported import Exported
public func exportedPublicFunc() {}
@_spi(X) public func exportedSpiFunc() {}
@_spi(X) public struct ExportedSpiType {}
@_spi(O) public func exportedSpiFuncOtherGroup() {}
//--- Exporter.swift
@_exported import Exported
@_spi(X) public func exporterSpiFunc() {}
//--- NonExportedAs.swift
@_exported import Exported
@_spi(X) public func exporterSpiFunc() {}
//--- NonExporter.swift
@_spi(X) import Exported
@_spi(X) public func exporterSpiFunc() {}
//--- ClientLib.swift
@_spi(X) import Exporter
public func clientA() {
exportedPublicFunc()
exportedSpiFunc()
exporterSpiFunc()
}
@_spi(X) public func spiUseExportedSpiType(_ a: ExportedSpiType) {}
//--- Client_FileA.swift
@_spi(X) import Exporter
public func clientA() {
exportedPublicFunc()
exportedSpiFunc()
exporterSpiFunc()
exportedSpiFuncOtherGroup() // expected-error {{cannot find 'exportedSpiFuncOtherGroup' in scope}}
}
@inlinable
public func inlinableClient() {
exportedPublicFunc()
exportedSpiFunc() // expected-error {{global function 'exportedSpiFunc()' cannot be used in an '@inlinable' function because it is an SPI imported from 'Exported'}}
exporterSpiFunc() // expected-error {{global function 'exporterSpiFunc()' cannot be used in an '@inlinable' function because it is an SPI imported from 'Exporter'}}
}
@_spi(X) public func spiUseExportedSpiType(_ a: ExportedSpiType) {}
public func publicUseExportedSpiType(_ a: ExportedSpiType) {} // expected-error {{cannot use struct 'ExportedSpiType' here; it is an SPI imported from 'Exported'}}
//--- Client_FileB.swift
import Exporter
public func clientB() {
exportedPublicFunc()
exportedSpiFunc() // expected-error {{cannot find 'exportedSpiFunc' in scope}}
exporterSpiFunc() // expected-error {{cannot find 'exporterSpiFunc' in scope}}
}
//--- NonExportedAsClient.swift
@_spi(X) import NonExportedAs
public func client() {
exportedPublicFunc()
exportedSpiFunc()
exporterSpiFunc()
}
//--- NonExporterClient.swift
@_spi(X) import NonExporter
public func client() {
exportedPublicFunc() // expected-error {{cannot find 'exportedPublicFunc' in scope}}
exportedSpiFunc() // expected-error {{cannot find 'exportedSpiFunc' in scope}}
exporterSpiFunc()
}
//--- PublicClient.swift
@_spi(X) import Exporter // expected-warning {{'@_spi' import of 'Exporter' will not include any SPI symbols}}
public func client() {
exportedPublicFunc()
exportedSpiFunc() // expected-error {{cannot find 'exportedSpiFunc' in scope}}
exporterSpiFunc() // expected-error {{cannot find 'exporterSpiFunc' in scope}}
}
|