mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Add a script to build all dependencies for explicit module build in one step. This reduces the boiling plate code needed to write a test for explicit module build and allows the test to be more cross platform and resilient to module dependencies changes.
249 lines
11 KiB
Swift
249 lines
11 KiB
Swift
// REQUIRES: objc_interop
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: split-file %s %t
|
|
|
|
// RUN: %target-swift-frontend -scan-dependencies -module-name Test -module-cache-path %t/clang-module-cache -O -module-load-mode prefer-serialized \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import -scanner-module-validation \
|
|
// RUN: %t/test.swift -o %t/deps.json -auto-bridging-header-chaining -scanner-output-dir %t -scanner-debug-write-output \
|
|
// RUN: -Xcc -fmodule-map-file=%t/a.modulemap -Xcc -fmodule-map-file=%t/b.modulemap -import-objc-header %t/Bridging.h
|
|
|
|
// RUN: %{python} %S/../CAS/Inputs/SwiftDepsExtractor.py %t/deps.json Test bridgingHeader | %FileCheck %s
|
|
|
|
// CHECK: "moduleDependencies": [
|
|
// CHECK-NEXT: "A"
|
|
// CHECK-NEXT: ],
|
|
|
|
/// Try build then import from a non-caching compilation.
|
|
|
|
// RUN: %{python} %S/../../utils/swift-build-modules.py %swift_frontend_plain %t/deps.json -o %t/MyApp.cmd -b %t/header.cmd
|
|
// RUN: %target-swift-frontend @%t/header.cmd %t/Bridging.h -disable-implicit-swift-modules -O -o %t/bridging.pch
|
|
|
|
// RUN: echo "\"-disable-implicit-string-processing-module-import\"" >> %t/MyApp.cmd
|
|
// RUN: echo "\"-disable-implicit-concurrency-module-import\"" >> %t/MyApp.cmd
|
|
// RUN: echo "\"-import-objc-header\"" >> %t/MyApp.cmd
|
|
// RUN: echo "\"%t/Bridging.h\"" >> %t/MyApp.cmd
|
|
// RUN: echo "\"-import-pch\"" >> %t/MyApp.cmd
|
|
// RUN: echo "\"%t/bridging.pch\"" >> %t/MyApp.cmd
|
|
|
|
// RUN: %target-swift-frontend -module-name Test -O @%t/MyApp.cmd %t/test.swift \
|
|
// RUN: -emit-module -o %t/Test.swiftmodule
|
|
|
|
/// Importing binary module with bridging header from a module that also has bridging header using implicit build method.
|
|
/// This should succeed even it is also importing a bridging header that shares same header dependencies (with proper header guard).
|
|
// RUN: %target-swift-frontend -typecheck -module-name User \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import \
|
|
// RUN: -Xcc -fmodule-map-file=%t/a.modulemap -Xcc -fmodule-map-file=%t/b.modulemap \
|
|
// RUN: -I %t %t/user2.swift -import-objc-header %t/Bridging2.h
|
|
|
|
/// Importing binary module with bridging header from a module that has no bridging header.
|
|
// RUN: %target-swift-frontend -scan-dependencies -module-name User -module-cache-path %t/clang-module-cache -O -module-load-mode prefer-serialized \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import -scanner-module-validation \
|
|
// RUN: %t/user.swift -o %t/deps2.json -auto-bridging-header-chaining -scanner-output-dir %t -scanner-debug-write-output \
|
|
// RUN: -Xcc -fmodule-map-file=%t/a.modulemap -Xcc -fmodule-map-file=%t/b.modulemap -I %t -enable-library-evolution
|
|
|
|
// RUN: %swift-scan-test -action get_chained_bridging_header -- %target-swift-frontend -emit-module \
|
|
// RUN: -module-name User -module-cache-path %t/clang-module-cache -O \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import \
|
|
// RUN: %t/user.swift -auto-bridging-header-chaining -o %t/User.swiftmodule \
|
|
// RUN: -Xcc -fmodule-map-file=%t/a.modulemap -Xcc -fmodule-map-file=%t/b.modulemap -I %t > %t/header1.h
|
|
// RUN: %FileCheck %s --check-prefix=HEADER1 --input-file=%t/header1.h
|
|
// HEADER1: #include
|
|
// HEADER1-SAME: Bridging.h
|
|
|
|
// RUN: %{python} %S/../../utils/swift-build-modules.py %swift_frontend_plain %t/deps2.json -o %t/User.cmd -b %t/header1.cmd
|
|
|
|
// RUN: %target-swift-frontend @%t/header1.cmd -disable-implicit-swift-modules -O -o %t/bridging1.pch
|
|
|
|
// RUN: %target-swift-frontend -module-name User -O \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import -disable-implicit-swift-modules \
|
|
// RUN: -import-pch %t/bridging1.pch @%t/User.cmd %t/user.swift \
|
|
// RUN: -emit-module -o %t/User.swiftmodule -emit-module-interface-path %t/User.swiftinterface -enable-library-evolution
|
|
|
|
/// Make sure the emitted content is compatible with original. The embedded header path needs to be original header and no bridging header module leaking into interface.
|
|
// RUN: llvm-bcanalyzer -dump %t/User.swiftmodule | %FileCheck %s --check-prefix CHECK-NO-HEADER
|
|
// CHECK-NO-HEADER-NOT: <IMPORTED_HEADER
|
|
// RUN: %FileCheck %s --check-prefix NO-OBJC-LEAKING --input-file=%t/User.swiftinterface
|
|
// NO-OBJC-LEAKING-NOT: import __ObjC
|
|
|
|
/// Importing binary module with bridging header from a module with bridging header using explicit build method with header chaining.
|
|
// RUN: %target-swift-frontend -scan-dependencies -module-name User -O -module-load-mode prefer-serialized \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import -scanner-module-validation \
|
|
// RUN: -Xcc -fmodule-map-file=%t/a.modulemap -Xcc -fmodule-map-file=%t/b.modulemap \
|
|
// RUN: -I %t %t/user2.swift -import-objc-header %t/Bridging2.h -auto-bridging-header-chaining -scanner-output-dir %t -scanner-debug-write-output \
|
|
// RUN: -o %t/deps3.json
|
|
|
|
// RUN: %swift-scan-test -action get_chained_bridging_header -- %target-swift-frontend -emit-module \
|
|
// RUN: -module-name User -module-cache-path %t/clang-module-cache -O \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import \
|
|
// RUN: %t/user.swift -auto-bridging-header-chaining -o %t/User.swiftmodule -import-objc-header %t/Bridging2.h \
|
|
// RUN: -Xcc -fmodule-map-file=%t/a.modulemap -Xcc -fmodule-map-file=%t/b.modulemap -I %t > %t/header2.h
|
|
// RUN: %FileCheck %s --check-prefix=HEADER2 --input-file=%t/header2.h
|
|
// HEADER2: #include
|
|
// HEADER2-SAME: Bridging.h
|
|
// HEADER2: #include
|
|
// HEADER2-SAME: Bridging2.h
|
|
|
|
// RUN: %FileCheck %s --check-prefix DEPS_JSON --input-file=%t/deps3.json
|
|
// DEPS_JSON: "chainedBridgingHeaderPath":
|
|
// DEPS_JSON-SAME: -ChainedBridgingHeader.h
|
|
// DEPS_JSON: "bridgingHeader":
|
|
// DEPS_JSON-NEXT: "path":
|
|
// DEPS_JSON-SAME: Bridging2.h
|
|
// DEPS_JSON-NEXT: "sourceFiles":
|
|
// DEPS_JSON-NEXT: Bridging2.h
|
|
|
|
// RUN: %{python} %S/../../utils/swift-build-modules.py %swift_frontend_plain %t/deps3.json -o %t/User2.cmd -b %t/header2.cmd
|
|
|
|
// RUN: %target-swift-frontend @%t/header2.cmd -disable-implicit-swift-modules -O -o %t/bridging2.pch
|
|
|
|
// RUN: echo "\"-import-objc-header\"" >> %t/User2.cmd
|
|
// RUN: echo "\"%t/Bridging2.h\"" >> %t/User2.cmd
|
|
// RUN: echo "\"-import-pch\"" >> %t/User2.cmd
|
|
// RUN: echo "\"%t/bridging2.pch\"" >> %t/User2.cmd
|
|
|
|
// RUN: %target-swift-frontend -module-name User -O \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import \
|
|
// RUN: @%t/User2.cmd %t/user2.swift \
|
|
// RUN: -emit-objc-header -emit-objc-header-path %t/User-Swift.h \
|
|
// RUN: -emit-module -o %t/User2.swiftmodule
|
|
|
|
/// Generated ObjC Header should reference original header name, not the chained bridging header.
|
|
// RUN: %FileCheck %s --check-prefix OBJC-HEADER --input-file=%t/User-Swift.h
|
|
// OBJC-HEADER: import B
|
|
// OBJC-HEADER: import
|
|
// OBJC-HEADER-SAME: Bridging2.h
|
|
// OBJC-HEADER-NOT: ChainedBridgingHeader.h
|
|
|
|
// RUN: %target-swift-frontend -scan-dependencies -module-name User -O -module-load-mode prefer-serialized \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import -scanner-module-validation \
|
|
// RUN: -Xcc -fmodule-map-file=%t/a.modulemap -Xcc -fmodule-map-file=%t/b.modulemap \
|
|
// RUN: -I %t %t/user2.swift -import-objc-header %t/Bridging3.h -auto-bridging-header-chaining -scanner-output-dir %t -scanner-debug-write-output \
|
|
// RUN: -o %t/deps4.json -Rdependency-scan-cache -serialize-dependency-scan-cache -dependency-scan-cache-path %t/cache.moddepcache
|
|
|
|
// RUN: %FileCheck %s --check-prefix DEPS_JSON2 --input-file=%t/deps4.json
|
|
// DEPS_JSON2: "chainedBridgingHeaderPath":
|
|
// DEPS_JSON2-SAME: -ChainedBridgingHeader.h
|
|
// DEPS_JSON2: "bridgingHeader":
|
|
// DEPS_JSON2-NEXT: "path":
|
|
// DEPS_JSON2-SAME: Bridging3.h
|
|
// DEPS_JSON2-NEXT: "sourceFiles":
|
|
// DEPS_JSON2-NEXT: Bridging3.h
|
|
|
|
/// Make sure the cache is correct.
|
|
// RUN: %target-swift-frontend -scan-dependencies -module-name User -O -module-load-mode prefer-serialized \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import -scanner-module-validation \
|
|
// RUN: -Xcc -fmodule-map-file=%t/a.modulemap -Xcc -fmodule-map-file=%t/b.modulemap \
|
|
// RUN: -I %t %t/user2.swift -import-objc-header %t/Bridging3.h -auto-bridging-header-chaining -scanner-output-dir %t -scanner-debug-write-output \
|
|
// RUN: -o %t/deps4.json -Rdependency-scan-cache -load-dependency-scan-cache -serialize-dependency-scan-cache \
|
|
// RUN: -dependency-scan-cache-path %t/cache.moddepcache 2>&1 | %FileCheck %s -check-prefix=CACHE-LOAD
|
|
// CACHE-LOAD: remark: Incremental module scan: Re-using serialized module scanning dependency cache from:
|
|
|
|
// RUN: %{python} %S/../../utils/swift-build-modules.py %swift_frontend_plain %t/deps3.json -o %t/User3.cmd -b %t/header3.cmd
|
|
|
|
// RUN: %target-swift-frontend @%t/header3.cmd -disable-implicit-swift-modules -O -o %t/bridging3.pch
|
|
|
|
// RUN: echo "\"-import-pch\"" >> %t/User3.cmd
|
|
// RUN: echo "\"%t/bridging3.pch\"" >> %t/User3.cmd
|
|
// RUN: echo "\"-import-objc-header\"" >> %t/User3.cmd
|
|
// RUN: echo "\"%t/Bridging3.h\"" >> %t/User3.cmd
|
|
|
|
// RUN: %target-swift-frontend -module-name User -O \
|
|
// RUN: -disable-implicit-string-processing-module-import -disable-implicit-concurrency-module-import \
|
|
// RUN: @%t/User3.cmd %t/user2.swift \
|
|
// RUN: -emit-module -o %t/User3.swiftmodule
|
|
|
|
/// Verify the encoded here is just the `-import-objc-header` option.
|
|
// RUN: llvm-bcanalyzer -dump %t/User3.swiftmodule | %FileCheck %s --check-prefix CHECK-HEADER
|
|
// CHECK-HEADER: <IMPORTED_HEADER
|
|
// CHECK-HEADER-SAME: Bridging3.h
|
|
|
|
/// TODO: Try removing the bridging header and using the embedded header.
|
|
/// This is currently not available for testing due to a bug in embedded header
|
|
/// generation when explicit module is on. rdar://142505969
|
|
|
|
//--- test.swift
|
|
public func test() {
|
|
b()
|
|
}
|
|
public class TestB: B {}
|
|
|
|
//--- user.swift
|
|
import Test
|
|
|
|
func user() {
|
|
var b: TestB
|
|
test()
|
|
}
|
|
|
|
extension A {
|
|
public func testA() {}
|
|
}
|
|
|
|
public class AB : B {}
|
|
|
|
//--- user2.swift
|
|
import Test
|
|
|
|
func user() {
|
|
var b: TestB
|
|
var bridging: Bridging2
|
|
test()
|
|
}
|
|
|
|
extension Bridging2 {
|
|
public func testA() {}
|
|
}
|
|
|
|
public class BB : B {}
|
|
public class Foo3 : Bridging2 {}
|
|
|
|
//--- Bridging.h
|
|
#include "Foo.h"
|
|
#include "Foo2.h"
|
|
|
|
//--- Bridging2.h
|
|
#include "Foo.h"
|
|
#include "Foo2.h"
|
|
@interface Bridging2
|
|
@end
|
|
|
|
//--- Bridging3.h
|
|
@interface Bridging2
|
|
@end
|
|
|
|
//--- Foo.h
|
|
#import "a.h"
|
|
#ifndef IMPORT_FOO
|
|
#define IMPORT_FOO
|
|
int Foo = 0;
|
|
#endif
|
|
|
|
//--- Foo2.h
|
|
#ifndef IMPORT_FOO2
|
|
#define IMPORT_FOO2
|
|
int Foo2 = 0;
|
|
#endif
|
|
|
|
//--- a.h
|
|
#include "b.h"
|
|
struct A {
|
|
int a;
|
|
};
|
|
|
|
//--- b.h
|
|
void b(void);
|
|
@interface B
|
|
@end
|
|
|
|
//--- a.modulemap
|
|
module A {
|
|
header "a.h"
|
|
export *
|
|
}
|
|
|
|
//--- b.modulemap
|
|
module B {
|
|
header "b.h"
|
|
export *
|
|
}
|