-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[Serialization] Attempt to load transitive implementation-only dependencies on testable imports #64783
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[Serialization] Attempt to load transitive implementation-only dependencies on testable imports #64783
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/// Implementation-only dependencies of modules imported as testable are | ||
/// optional, we attempt to load them but don't error if they are missing. | ||
|
||
// RUN: %empty-directory(%t) | ||
// RUN: split-file %s %t | ||
|
||
/// Build the hidden implementation-only dependency and the testable module. | ||
// RUN: %target-swift-frontend -emit-module %t/HiddenDep.swift -o %t \ | ||
// RUN: -swift-version 5 -enable-library-evolution | ||
// RUN: %target-swift-frontend -emit-module %t/TestedLib.swift -o %t \ | ||
// RUN: -swift-version 5 -enable-library-evolution -I %t \ | ||
// RUN: -enable-testing | ||
|
||
/// A client should ignore the transitive implementation-only dependency for a | ||
/// normal import. | ||
// RUN: %target-swift-frontend -typecheck %t/ClientNormalImport.swift -o %t \ | ||
// RUN: -swift-version 5 -I %t -Rmodule-loading 2>&1 | \ | ||
// RUN: %FileCheck --check-prefix=CHECK-NOT-LOADED %s | ||
|
||
/// A client should load the transitive implementation-only dependency of | ||
/// a module imported @testable. | ||
// RUN: %target-swift-frontend -typecheck %t/ClientTestableImport.swift -o %t \ | ||
// RUN: -swift-version 5 -I %t -Rmodule-loading 2>&1 | %FileCheck %s | ||
|
||
/// If the dependency is missing we don't fail at loading, but we may still | ||
/// fail later accessing decls missing because of references to the not-loaded module. | ||
// RUN: rm %t/HiddenDep.swiftmodule | ||
|
||
/// The transitive dependency is not loaded but a client can still build fine. | ||
// RUN: %target-swift-frontend -typecheck %t/ClientNormalImport.swift -o %t \ | ||
// RUN: -swift-version 5 -I %t -Rmodule-loading 2>&1 | \ | ||
// RUN: %FileCheck %s --check-prefix=CHECK-NOT-LOADED | ||
|
||
/// Clients referencing a decl that depends on the hidden module don't see the | ||
/// decl, it is dropped by deserialization recovery. | ||
// RUN: %target-swift-frontend -typecheck %t/ClientTestableImport.swift -o %t \ | ||
// RUN: -swift-version 5 -I %t -verify | ||
|
||
//--- HiddenDep.swift | ||
|
||
public struct HiddenType {} | ||
|
||
//--- TestedLib.swift | ||
|
||
@_implementationOnly import HiddenDep | ||
|
||
internal func dependsOnHiddenType() -> HiddenType { fatalError() } | ||
|
||
//--- ClientNormalImport.swift | ||
|
||
/// Note that the import doesn't have to be testable, only the imported module | ||
/// needs to enable testing. We may want to improve upon this in the future. | ||
import TestedLib | ||
// CHECK-NOT-LOADED-NOT: remark: loaded module 'HiddenDep' | ||
|
||
//--- ClientTestableImport.swift | ||
|
||
@testable import TestedLib | ||
// CHECK: remark: loaded module 'HiddenDep' | ||
|
||
let _ = dependsOnHiddenType() // expected-error {{cannot find 'dependsOnHiddenType' in scope}} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍