mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
While doing #76740 I iteratively was adding new `REQUIRES:` as new usages of the features were found, but I did not realize that at the same time other people might be removing some of those usages. The tests in this commit had some `REQUIRES:` line for a previous `-enable-experimental/upcoming-feature`, but they not longer use those features, so the `REQUIRES:` were effectively disabling the tests (at least in the case of `KeyPathWithStaticMembers`. In other cases they might still had executed).
68 lines
2.3 KiB
Swift
68 lines
2.3 KiB
Swift
// RUN: %empty-directory(%t/src)
|
|
// RUN: split-file %s %t/src
|
|
|
|
/// Build LibA
|
|
// RUN: %host-build-swift %t/src/LibA.swift -swift-version 5 -emit-module -emit-library -enable-library-evolution -module-name LibA -o %t/%target-library-name(LibA) -emit-module-interface-path %t/LibA.swiftinterface
|
|
|
|
// Build LibB
|
|
// RUN: %target-build-swift %t/src/LibB.swift -I %t -L %t -l LibA -swift-version 5 -emit-module -emit-library -module-name LibB -o %t/%target-library-name(LibB)
|
|
|
|
// Build LibC
|
|
// RUN: %target-build-swift %t/src/LibC.swift -I %t -L %t -l LibA -swift-version 5 -emit-module -emit-library -module-name LibC -o %t/%target-library-name(LibC)
|
|
|
|
// Build & run main.swift
|
|
// RUN: %target-build-swift -I %t -L %t -l LibA -l LibB -l LibC %t/src/main.swift -o %t/a.out
|
|
// RUN: %target-codesign %t/%target-library-name(LibA)
|
|
// RUN: %target-codesign %t/%target-library-name(LibB)
|
|
// RUN: %target-codesign %t/%target-library-name(LibC)
|
|
// RUN: %target-codesign %t/a.out
|
|
// RUN: %target-run %t/a.out | %FileCheck %s
|
|
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: OS=macosx
|
|
|
|
// UNSUPPORTED: use_os_stdlib
|
|
// UNSUPPORTED: back_deployment_runtime
|
|
|
|
//--- LibA.swift
|
|
public struct AStruct {
|
|
public static var property1: Int = 1
|
|
public static var property2: Int = 2
|
|
private(set) public static var property3: Int = 1
|
|
private(set) public static var property4: Int = 4
|
|
}
|
|
|
|
//--- LibB.swift
|
|
import LibA
|
|
|
|
public let keyPath1FromLibB = \AStruct.Type.property1
|
|
public let keyPath2FromLibB = \AStruct.Type.property2
|
|
public let keyPath3FromLibB = \AStruct.Type.property3
|
|
public let keyPath4FromLibB = \AStruct.Type.property4
|
|
public var keyPath5FromLibB = \AStruct.Type.property1 // WritableKeyPath with public setter
|
|
|
|
//--- LibC.swift
|
|
import LibA
|
|
|
|
public let keyPath1FromLibC = \AStruct.Type.property1
|
|
public let keyPath2FromLibC = \AStruct.Type.property2
|
|
public let keyPath3FromLibC = \AStruct.Type.property3 // Read-only with private setter
|
|
public let keyPath4FromLibC = \AStruct.Type.property4
|
|
|
|
//--- main.swift
|
|
import LibB
|
|
import LibC
|
|
|
|
// CHECK: true
|
|
print(keyPath1FromLibB == keyPath1FromLibC)
|
|
// CHECK: true
|
|
print(keyPath1FromLibB != keyPath2FromLibC)
|
|
|
|
// CHECK: true
|
|
print(keyPath3FromLibB == keyPath3FromLibC)
|
|
// CHECK: true
|
|
print(keyPath3FromLibB != keyPath4FromLibC)
|
|
|
|
// CHECK: false
|
|
print(keyPath5FromLibB == keyPath3FromLibC)
|